Example usage for Java javax.management MBeanAttributeInfo fields, constructors, methods, implement or subclass
The text is from its open source code.
MBeanAttributeInfo(String name, String type, String description, boolean isReadable, boolean isWritable, boolean isIs) Constructs an MBeanAttributeInfo object. | |
MBeanAttributeInfo(String name, String description, Method getter, Method setter) This constructor takes the name of a simple attribute, and Method objects for reading and writing the attribute. |
String | getDescription() Returns the human-readable description of the feature. |
Descriptor | getDescriptor() Returns the descriptor for the feature. |
String | getName() Returns the name of the feature. |
String | getType() Returns the class name of the attribute. |
boolean | isReadable() Whether the value of the attribute can be read. |
boolean | isWritable() Whether new values can be written to the attribute. |