Example usage for Java javax.management.openmbean CompositeType fields, constructors, methods, implement or subclass
The text is from its open source code.
CompositeType(String typeName, String description, String[] itemNames, String[] itemDescriptions, OpenType>[] itemTypes) Constructs a CompositeType instance, checking for the validity of the given parameters. |
boolean | containsKey(String itemName) Returns true if this CompositeType instance defines an item whose name is itemName. |
String | getDescription(String itemName) Returns the description of the item whose name is itemName, or null if this CompositeType instance does not define any item whose name is itemName. |
OpenType> | getType(String itemName) Returns the open type of the item whose name is itemName, or null if this CompositeType instance does not define any item whose name is itemName. |
Set | keySet() Returns an unmodifiable Set view of all the item names defined by this CompositeType instance. |