Package org.eclipse.mat.snapshot.model
Interface IObject
- All Superinterfaces:
Serializable
- All Known Subinterfaces:
IArray
,IClass
,IClassLoader
,IInstance
,IObjectArray
,IPrimitiveArray
- All Known Implementing Classes:
AbstractArrayImpl
,AbstractExtractedCollection
,AbstractObjectImpl
,ClassImpl
,ClassLoaderImpl
,ExtractedCollection
,ExtractedMap
,IMapExtractor.EntryObject
,InstanceImpl
,ObjectArrayImpl
,PrimitiveArrayImpl
Base interface for all objects found in a snapshot. Other model interfaces
derive from this interface, e.g. for classes, plain objects, object arrays,
primitive arrays...
- No Implement:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic interface
The type of the primitive array. -
Method Summary
Modifier and TypeMethodDescriptionGet class specific name of this object which depends on the availability of the appropriate name resolver, e.g.getClazz()
Get class snapshot object this object is an instance of.Get concatenation ofgetTechnicalName()
andgetClassSpecificName()
.GetGCRootInfo
if the object is a garbage collection root or null otherwise.long
Get address for the snapshot object.int
Get id for the snapshot object.Get list of snapshot objects referenced from this snapshot object with the name of the field over which it was referenced.long
Get retained heap size of this object.Returns the snapshot from which this object has been read.Get technical name of this object which is something like class@address.long
Get used heap size of just this object.resolveValue
(String field) Resolves and returns the value of a field specified by a dot notation.
-
Method Details
-
getObjectId
int getObjectId()Get id for the snapshot object. The id is not the address, but an internally assigned number fitting into anint
(this helps reducing the memory footprint of the snapshot considerably - addresses are only used for visualization purposes).- Returns:
- id for the snapshot object
-
getObjectAddress
long getObjectAddress()Get address for the snapshot object. This is the address at which the object was stored in memory. Use the address only for visualization purposes and try to use the id wherever possible as the snapshot API is optimized to handle ids and not addresses. Addresses are bigger (long
), have no consecutive order (with gaps), and are not used for hashing.- Returns:
- address for the snapshot object
-
getClazz
IClass getClazz()Get class snapshot object this object is an instance of.- Returns:
- class snapshot object this object is an instance of
-
getUsedHeapSize
long getUsedHeapSize()Get used heap size of just this object.- Returns:
- used heap size of this object
- Since:
- 1.0
-
getRetainedHeapSize
long getRetainedHeapSize()Get retained heap size of this object.- Returns:
- retained heap size of this object (returns 0 if the dominator tree wasn't calculated for the corresponding snapshot)
-
getTechnicalName
String getTechnicalName()Get technical name of this object which is something like class@address.- Returns:
- technical name of this object which is something like class@address
-
getClassSpecificName
String getClassSpecificName()Get class specific name of this object which depends on the availability of the appropriate name resolver, e.g. for a String the value of the char[].- Returns:
- class specific name of the given snapshot object or null if it can't be resolved
-
getDisplayName
String getDisplayName()Get concatenation ofgetTechnicalName()
andgetClassSpecificName()
.- Returns:
- concatenation of
getTechnicalName()
andgetClassSpecificName()
-
getOutboundReferences
List<NamedReference> getOutboundReferences()Get list of snapshot objects referenced from this snapshot object with the name of the field over which it was referenced.- Returns:
- list of snapshot objects referenced from this snapshot object with the name of the field over which it was referenced
-
resolveValue
Resolves and returns the value of a field specified by a dot notation. If the field is a primitive type, the value the returns the corresponding object wrapper, e.g. a java.lang.Boolean is returned for a field of type boolean. If the field is an object reference, the corresponding IObject is returned.The field can be specified using the dot notation, i.e. object references are followed and its fields are evaluated. If any of the object references is null, null is returned.
- Parameters:
field
- the field name in dot notation- Returns:
- the value of the field
- Throws:
SnapshotException
- when there is a problem retrieving the field
-
getGCRootInfo
GetGCRootInfo
if the object is a garbage collection root or null otherwise. An object may or may not be a garbage collection root, it may even be one for multiple reasons (described in theGCRootInfo
object).- Returns:
GCRootInfo
if the object is a garbage collection root or null otherwise- Throws:
SnapshotException
- when there is a problem retrieving the information
-
getSnapshot
ISnapshot getSnapshot()Returns the snapshot from which this object has been read.- Returns:
- the snapshot from which this object has been read.
-