| Package | Description |
|---|---|
| java.lang.management |
Provides the management interfaces for monitoring and management of the Java virtual machine and other components in the Java runtime.
|
| javax.management.openmbean |
Provides the open data types and Open MBean descriptor classes.
|
| Modifier and Type | Method and Description |
|---|---|
static ThreadInfo |
ThreadInfo.from(CompositeData
Returns a
ThreadInfo object represented by the given
CompositeData.
|
static LockInfo |
LockInfo.from(CompositeData
Returns a
LockInfo object represented by the given
CompositeData.
|
static MonitorInfo |
MonitorInfo.from(CompositeData
Returns a
MonitorInfo object represented by the given
CompositeData.
|
static MemoryNotificationInfo |
MemoryNotificationInfo.from(CompositeData
Returns a
MemoryNotificationInfo object represented by the given
CompositeData.
|
static MemoryUsage |
MemoryUsage.from(CompositeData
Returns a
MemoryUsage object represented by the given
CompositeData.
|
| Modifier and Type | Class and Description |
|---|---|
class |
CompositeDataSupport
The
CompositeDataSupport class is the
open data class which implements the
CompositeData interface.
|
| Modifier and Type | Method and Description |
|---|---|
CompositeData |
TabularData.get(Object
Returns the
CompositeData value whose index is key, or
null if there is no value mapping to key, in this
TabularData instance.
|
CompositeData |
TabularDataSupport.get(Object
Returns the
CompositeData value whose index is key, or
null if there is no value mapping to key, in this
TabularData instance.
|
CompositeData |
CompositeDataInvocationHandler.getCompositeData()
Return the
CompositeData that was supplied to the constructor.
|
CompositeData |
TabularData.remove(Object
Removes the
CompositeData value whose index is key from this
TabularData instance, and returns the removed value, or returns
null if there is no value whose index is key.
|
CompositeData |
TabularDataSupport.remove(Object
Removes the
CompositeData value whose index is key from this
TabularData instance, and returns the removed value, or returns
null if there is no value whose index is key.
|
CompositeData |
CompositeDataView.toCompositeData(CompositeType
Return a
CompositeData corresponding to the values in this object.
|
| Modifier and Type | Method and Description |
|---|---|
Object |
TabularData.calculateIndex(CompositeData
Calculates the index that would be used in this
TabularData instance to refer to the specified composite data value parameter if it were added to this instance.
|
Object |
TabularDataSupport.calculateIndex(CompositeData
Calculates the index that would be used in this
TabularData instance to refer to the specified composite data value parameter if it were added to this instance.
|
boolean |
TabularData.containsValue(CompositeData
Returns
true if and only if this
TabularData instance contains the specified
CompositeData value.
|
boolean |
TabularDataSupport.containsValue(CompositeData
Returns
true if and only if this
TabularData instance contains the specified
CompositeData value.
|
void |
TabularData.put(CompositeData
Adds value to this
TabularData instance.
|
void |
TabularDataSupport.put(CompositeData
|
void |
TabularData.putAll(CompositeData
Add all the elements in values to this
TabularData instance.
|
void |
TabularDataSupport.putAll(CompositeData
Add all the elements in values to this
TabularData instance.
|
| Constructor and Description | |
|---|---|
CompositeDataInvocationHandler(CompositeData
Construct a handler backed by the given
CompositeData.
|