public interface JavaHeap
Represents a heap of managed objects.
There may be multiple heaps within a JVM, for instance a generational heap and a class heap. Additionally, heaps may consist of non-contiguous memory regions. For instance, an object heap may be divided into a hot and cold section.
Modifier and Type | Method and Description |
---|---|
boolean |
equals(java.lang.Object obj) |
java.lang.String |
getName()
Get a brief textual description of this heap.
|
java.util.Iterator |
getObjects()
Get the set of objects which are stored in this heap.
|
java.util.Iterator |
getSections()
Get the set of contiguous memory regions which form this heap.
|
int |
hashCode() |
java.util.Iterator getSections()
ImageSection
,
CorruptData
java.lang.String getName()
java.util.Iterator getObjects()
JavaObject
,
CorruptData
boolean equals(java.lang.Object obj)
equals
in class java.lang.Object
obj
- int hashCode()
hashCode
in class java.lang.Object
© Copyright 2005, 2012 IBM Corporation. All Rights Reserved.