public static class ProfSnapshot.MemoryPool extends Object
MemoryPoolMXBean
Modifier and Type | Field and Description |
---|---|
ProfSnapshot.MemoryUsageDesc |
collectionUsage
Collection usage of the pool or
null when collection usage not supported. |
long |
collectionUsageUsed
Collection usage of the pool or -1 when usage not supported.
|
String |
name |
String |
type |
ProfSnapshot.MemoryUsageDesc |
usage
Usage of the pool or
null when usage not supported. |
long |
usageUsed
Usage of the pool or -1 when usage not supported.
|
public String name
MemoryPoolMXBean.getName()
public String type
MemoryPoolMXBean.getType()
public long usageUsed
MemoryPoolMXBean.getUsage()
returns non null
) then the value of the
returned objects MemoryUsage.getUsed()
method.public long collectionUsageUsed
MemoryPoolMXBean.getCollectionUsage()
returns non null
)
then the value of the returned objects MemoryUsage.getUsed()
method.public ProfSnapshot.MemoryUsageDesc collectionUsage
null
when collection usage not supported.
If collection usage supported (MemoryPoolMXBean.getCollectionUsage()
returns non null
) the
representation of the returned object.public ProfSnapshot.MemoryUsageDesc usage
null
when usage not supported.
If usage supported (MemoryPoolMXBean.getUsage()
returns non null
) the representation of the
returned object.