Example usage for Java javax.management.openmbean OpenMBeanAttributeInfoSupport fields, constructors, methods, implement or subclass
The text is from its open source code.
OpenMBeanAttributeInfoSupport(String name, String description, OpenType> openType, boolean isReadable, boolean isWritable, boolean isIs) Constructs an OpenMBeanAttributeInfoSupport instance, which describes the attribute of an open MBean with the specified name , openType and description , and the specified read/write access properties. |
Object | getDefaultValue() Returns the default value for the attribute described by this OpenMBeanAttributeInfoSupport instance, if specified, or null otherwise. |
String | getDescription() Returns the human-readable description of the feature. |
Descriptor | getDescriptor() Returns the descriptor for the feature. |
Comparable> | getMaxValue() Returns the maximal value for the attribute described by this OpenMBeanAttributeInfoSupport instance, if specified, or null otherwise. |
Comparable> | getMinValue() Returns the minimal value for the attribute described by this OpenMBeanAttributeInfoSupport instance, if specified, or null otherwise. |
String | getName() Returns the name of the feature. |
String | getType() Returns the class name of the attribute. |
boolean | isWritable() Whether new values can be written to the attribute. |