Package org.eclipse.mat.snapshot
Class UnreachableObjectsHistogram.Record
java.lang.Object
org.eclipse.mat.snapshot.UnreachableObjectsHistogram.Record
- All Implemented Interfaces:
- Serializable
- Enclosing class:
- UnreachableObjectsHistogram
Holds details about the unreachable objects for objects of one particular
- See Also:
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionlongthe actual address of the classThe name of the classintthe number of instances discarded by Memory Analyzerlongthe total size occupied by instances of this class that were discarded
- 
Constructor Details- 
RecordDetails about a particular class- Parameters:
- className- the class name
- classAddress- the address of the class object
- nrOfObjects- the number of instances
- sizeOfObjects- the total size of the instances
- Since:
- 1.0
 
- 
RecordDetails about a particular class- Parameters:
- className- the class name
- nrOfObjects- the number of instances
- sizeOfObjects- the total size of the instances
 
 
- 
- 
Method Details- 
getClassNameThe name of the class- Returns:
- the class name
 
- 
getObjectCountpublic int getObjectCount()the number of instances discarded by Memory Analyzer- Returns:
- the number of instances
 
- 
getShallowHeapSizepublic long getShallowHeapSize()the total size occupied by instances of this class that were discarded- Returns:
- the total size
 
- 
getClassAddresspublic long getClassAddress()the actual address of the class- Returns:
- the class address
- Since:
- 1.0
 
 
-