Java javax.management MBeanAttributeInfo fields, constructors, methods, implement or subclass

Example usage for Java javax.management MBeanAttributeInfo fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for javax.management MBeanAttributeInfo.

The text is from its open source code.

Constructor

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.

Method

StringgetDescription()
Returns the human-readable description of the feature.
DescriptorgetDescriptor()
Returns the descriptor for the feature.
StringgetName()
Returns the name of the feature.
StringgetType()
Returns the class name of the attribute.
booleanisReadable()
Whether the value of the attribute can be read.
booleanisWritable()
Whether new values can be written to the attribute.