Class SamplingProfileNode


  • public class SamplingProfileNode
    extends java.lang.Object
    Heap profile sample.
    • Constructor Summary

      Constructors 
      Constructor Description
      SamplingProfileNode​(java.lang.Number size, java.lang.Number total, java.util.List<java.lang.String> stack)  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.Number getSize()
      Size of the sampled allocation.
      java.util.List<java.lang.String> getStack()
      Execution stack at the point of allocation.
      java.lang.Number getTotal()
      Total bytes attributed to this sample.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • SamplingProfileNode

        public SamplingProfileNode​(java.lang.Number size,
                                   java.lang.Number total,
                                   java.util.List<java.lang.String> stack)
    • Method Detail

      • getSize

        public java.lang.Number getSize()
        Size of the sampled allocation.
      • getTotal

        public java.lang.Number getTotal()
        Total bytes attributed to this sample.
      • getStack

        public java.util.List<java.lang.String> getStack()
        Execution stack at the point of allocation.