public class MemoryPoolInfoDto extends Object
MemoryPoolMXBean
Modifier and Type | Field and Description |
---|---|
MemoryUsageDescDto |
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 |
MemoryUsageDescDto |
usage
Usage of the pool or
null when usage not supported. |
long |
usageUsed
Usage of the pool or -1 when usage not supported.
|
Constructor and Description |
---|
MemoryPoolInfoDto()
No-arg constructor required by JAXB.
|
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 MemoryUsageDescDto collectionUsage
null
when collection usage not supported.
If collection usage supported (MemoryPoolMXBean.getCollectionUsage()
returns non null
) the
representation of the returned object.public MemoryUsageDescDto usage
null
when usage not supported.
If usage supported (MemoryPoolMXBean.getUsage()
returns non null
) the representation of the
returned object.