Uses of Class
javax.management.openmbean.OpenDataException
Package
Description
Provides the open data types and Open MBean descriptor classes.
-
Uses of OpenDataException in javax.management.openmbean
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.ArrayType
(SimpleType<?> elementType, boolean primitiveArray) Constructs a unidimensionalArrayType
instance for the suppliedSimpleType
.CompositeDataSupport
(CompositeType compositeType, String[] itemNames, Object[] itemValues) Constructs aCompositeDataSupport
instance with the specifiedcompositeType
, whose item values are specified byitemValues[]
, in the same order as initemNames[]
.CompositeDataSupport
(CompositeType compositeType, Map<String, ?> items) Constructs aCompositeDataSupport
instance with the specifiedcompositeType
, whose item names and corresponding values are given by the mappings in the mapitems
.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<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.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
.protected
Constructs anOpenType
instance (actually a subclass instance asOpenType
is abstract), checking for the validity of the given parameters.TabularType
(String typeName, String description, CompositeType rowType, String[] indexNames) Constructs aTabularType
instance, checking for the validity of the given parameters.