| javax.management.openmbean.OpenMBeanAttributeInfo
All known Subclasses: javax.management.openmbean.OpenMBeanAttributeInfoSupport,
Method Summary | |
public boolean | equals(Object obj) Compares the give Object for equality with this instance. | public int | hashCode() | public boolean | isIs() | public boolean | isReadable() Returns true if the attribute is readable, false in not. | public boolean | isWritable() Returns true if the attribute is writable, false in not. | public String | toString() Returns a string representation of this OpenMBeanAttributeInfo instance. |
equals | public boolean equals(Object obj)(Code) | | Compares the give Object for equality with this instance.
The operation returns true if and only if the following statements
are all true:
- obj is not null
- obj also implements OpenMBeanAttributeInfo
- their names are equals
- their open types are equal
- access properties (isReadable, isWritable, isIs) are equal
- default,min,max and legal values are equal
boolean true if the above conditions are met |
hashCode | public int hashCode()(Code) | | Computes the hashCode of this OpenMBeanAttributeInfo
int The hashCode value |
isIs | public boolean isIs()(Code) | | Returns true if the attribute described is accessed through a isXXX
getter
Note: applies only to boolean and Boolean values
boolean true if accessed through a isXXX |
isReadable | public boolean isReadable()(Code) | | Returns true if the attribute is readable, false in not.
boolean true of readable |
isWritable | public boolean isWritable()(Code) | | Returns true if the attribute is writable, false in not.
boolean true of writable |
toString | public String toString()(Code) | | Returns a string representation of this OpenMBeanAttributeInfo instance.
String The representation as string |
|
|