Uses of Interface
javax.management.openmbean.CompositeData
-
Packages that use CompositeData 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. -
-
Uses of CompositeData in java.lang.management
Methods in java.lang.management with parameters of type CompositeData Modifier and Type Method Description static LockInfo
LockInfo. from(CompositeData cd)
Returns aLockInfo
object represented by the givenCompositeData
.static MemoryNotificationInfo
MemoryNotificationInfo. from(CompositeData cd)
Returns aMemoryNotificationInfo
object represented by the givenCompositeData
.static MemoryUsage
MemoryUsage. from(CompositeData cd)
Returns aMemoryUsage
object represented by the givenCompositeData
.static MonitorInfo
MonitorInfo. from(CompositeData cd)
Returns aMonitorInfo
object represented by the givenCompositeData
.static ThreadInfo
ThreadInfo. from(CompositeData cd)
Returns aThreadInfo
object represented by the givenCompositeData
. -
Uses of CompositeData in javax.management.openmbean
Classes in javax.management.openmbean that implement CompositeData Modifier and Type Class Description class
CompositeDataSupport
TheCompositeDataSupport
class is the open data class which implements theCompositeData
interface.Methods in javax.management.openmbean that return CompositeData Modifier and Type Method Description CompositeData
TabularData. get(Object[] key)
Returns theCompositeData
value whose index is key, ornull
if there is no value mapping to key, in thisTabularData
instance.CompositeData
TabularDataSupport. get(Object[] key)
Returns theCompositeData
value whose index is key, ornull
if there is no value mapping to key, in thisTabularData
instance.CompositeData
CompositeDataInvocationHandler. getCompositeData()
Return theCompositeData
that was supplied to the constructor.CompositeData
TabularData. remove(Object[] key)
Removes theCompositeData
value whose index is key from thisTabularData
instance, and returns the removed value, or returnsnull
if there is no value whose index is key.CompositeData
TabularDataSupport. remove(Object[] key)
Removes theCompositeData
value whose index is key from thisTabularData
instance, and returns the removed value, or returnsnull
if there is no value whose index is key.CompositeData
CompositeDataView. toCompositeData(CompositeType ct)
Return aCompositeData
corresponding to the values in this object.Methods in javax.management.openmbean with parameters of type CompositeData Modifier and Type Method Description Object[]
TabularData. calculateIndex(CompositeData value)
Calculates the index that would be used in thisTabularData
instance to refer to the specified composite data value parameter if it were added to this instance.Object[]
TabularDataSupport. calculateIndex(CompositeData value)
Calculates the index that would be used in thisTabularData
instance to refer to the specified composite data value parameter if it were added to this instance.boolean
TabularData. containsValue(CompositeData value)
Returnstrue
if and only if thisTabularData
instance contains the specifiedCompositeData
value.boolean
TabularDataSupport. containsValue(CompositeData value)
Returnstrue
if and only if thisTabularData
instance contains the specifiedCompositeData
value.void
TabularData. put(CompositeData value)
Adds value to thisTabularData
instance.void
TabularData. putAll(CompositeData[] values)
Add all the elements in values to thisTabularData
instance.void
TabularDataSupport. putAll(CompositeData[] values)
Add all the elements in values to thisTabularData
instance.Constructors in javax.management.openmbean with parameters of type CompositeData Constructor Description CompositeDataInvocationHandler(CompositeData compositeData)
Construct a handler backed by the givenCompositeData
.
-