Uses of Class
javax.management.openmbean.OpenType
Package
Description
Provides the open data types and Open MBean descriptor classes.
-
Uses of OpenType in javax.management.openmbean
Modifier and TypeClassDescriptionclass
ArrayType<T>
TheArrayType
class is the open type class whose instances describe all open data values which are n-dimensional arrays of open data values.class
TheCompositeType
class is the open type class whose instances describe the types ofCompositeData
values.final class
SimpleType<T>
TheSimpleType
class is the open type class whose instances describe all open data values which are neither arrays, norCompositeData
values, norTabularData
values.class
TheTabularType
class is the open type class whose instances describe the types ofTabularData
values.Modifier and TypeMethodDescriptionOpenType<?>
ArrayType.getElementOpenType()
Returns the open type of element values contained in the arrays described by thisArrayType
instance.OpenType<?>
OpenMBeanAttributeInfoSupport.getOpenType()
Returns the open type for the values of the attribute described by thisOpenMBeanAttributeInfoSupport
instance.OpenType<?>
OpenMBeanParameterInfo.getOpenType()
Returns the open type of the values of the parameter described by thisOpenMBeanParameterInfo
instance.OpenType<?>
OpenMBeanParameterInfoSupport.getOpenType()
Returns the open type for the values of the parameter described by thisOpenMBeanParameterInfoSupport
instance.OpenType<?>
OpenMBeanOperationInfo.getReturnOpenType()
Returns the open type of the values returned by the operation described by thisOpenMBeanOperationInfo
instance.OpenType<?>
OpenMBeanOperationInfoSupport.getReturnOpenType()
Returns the open type of the values returned by the operation described by thisOpenMBeanOperationInfo
instance.OpenType<?>
Returns the open type of the item whose name is itemName, ornull
if thisCompositeType
instance does not define any item whose name is itemName.Modifier and TypeMethodDescriptionstatic <E> ArrayType<E[]>
ArrayType.getArrayType
(OpenType<E> elementType) Create anArrayType
instance in a type-safe manner.ModifierConstructorDescriptionConstructs anArrayType
instance describing open data values which are arrays with dimension dimension of elements whose open type is elementType.CompositeType
(String typeName, String description, String[] itemNames, String[] itemDescriptions, OpenType<?>[] itemTypes) Constructs aCompositeType
instance, checking for the validity of the given parameters.OpenMBeanAttributeInfoSupport
(String name, String description, OpenType<?> openType, boolean isReadable, boolean isWritable, boolean isIs) Constructs anOpenMBeanAttributeInfoSupport
instance, which describes the attribute of an open MBean with the specifiedname
,openType
anddescription
, and the specified read/write access properties.OpenMBeanAttributeInfoSupport
(String name, String description, OpenType<?> openType, boolean isReadable, boolean isWritable, boolean isIs, Descriptor descriptor) Constructs anOpenMBeanAttributeInfoSupport
instance, which describes the attribute of an open MBean with the specifiedname
,openType
,description
, read/write access properties, andDescriptor
.OpenMBeanAttributeInfoSupport
(String name, String description, OpenType<T> openType, boolean isReadable, boolean isWritable, boolean isIs, T defaultValue) Constructs anOpenMBeanAttributeInfoSupport
instance, which describes the attribute of an open MBean with the specifiedname
,openType
,description
anddefaultValue
, and the specified read/write access properties.OpenMBeanAttributeInfoSupport
(String name, String description, OpenType<T> openType, boolean isReadable, boolean isWritable, boolean isIs, T defaultValue, Comparable<T> minValue, Comparable<T> maxValue) Constructs anOpenMBeanAttributeInfoSupport
instance, which describes the attribute of an open MBean, with the specifiedname
,openType
,description
,defaultValue
,minValue
andmaxValue
.OpenMBeanAttributeInfoSupport
(String name, String description, OpenType<T> openType, boolean isReadable, boolean isWritable, boolean isIs, T defaultValue, T[] legalValues) Constructs anOpenMBeanAttributeInfoSupport
instance, which describes the attribute of an open MBean with the specifiedname
,openType
,description
,defaultValue
andlegalValues
, and the specified read/write access properties.OpenMBeanOperationInfoSupport
(String name, String description, OpenMBeanParameterInfo[] signature, OpenType<?> returnOpenType, int impact) Constructs anOpenMBeanOperationInfoSupport
instance, which describes the operation of a class of open MBeans, with the specifiedname
,description
,signature
,returnOpenType
andimpact
.OpenMBeanOperationInfoSupport
(String name, String description, OpenMBeanParameterInfo[] signature, OpenType<?> returnOpenType, int impact, Descriptor descriptor) Constructs anOpenMBeanOperationInfoSupport
instance, which describes the operation of a class of open MBeans, with the specifiedname
,description
,signature
,returnOpenType
,impact
, anddescriptor
.OpenMBeanParameterInfoSupport
(String name, String description, OpenType<?> openType) Constructs anOpenMBeanParameterInfoSupport
instance, which describes the parameter used in one or more operations or constructors of a class of open MBeans, with the specifiedname
,openType
anddescription
.OpenMBeanParameterInfoSupport
(String name, String description, OpenType<?> openType, Descriptor descriptor) Constructs anOpenMBeanParameterInfoSupport
instance, which describes the parameter used in one or more operations or constructors of a class of open MBeans, with the specifiedname
,openType
,description
, anddescriptor
.OpenMBeanParameterInfoSupport
(String name, String description, OpenType<T> openType, T defaultValue) Constructs anOpenMBeanParameterInfoSupport
instance, which describes the parameter used in one or more operations or constructors of a class of open MBeans, with the specifiedname
,openType
,description
anddefaultValue
.OpenMBeanParameterInfoSupport
(String name, String description, OpenType<T> openType, T defaultValue, Comparable<T> minValue, Comparable<T> maxValue) Constructs anOpenMBeanParameterInfoSupport
instance, which describes the parameter used in one or more operations or constructors of a class of open MBeans, with the specifiedname
,openType
,description
,defaultValue
,minValue
andmaxValue
.OpenMBeanParameterInfoSupport
(String name, String description, OpenType<T> openType, T defaultValue, T[] legalValues) Constructs anOpenMBeanParameterInfoSupport
instance, which describes the parameter used in one or more operations or constructors of a class of open MBeans, with the specifiedname
,openType
,description
,defaultValue
andlegalValues
.