Example usage for Java javax.management.openmbean CompositeDataSupport fields, constructors, methods, implement or subclass
The text is from its open source code.
CompositeDataSupport(CompositeType compositeType, Map Constructs a CompositeDataSupport instance with the specified compositeType , whose item names and corresponding values are given by the mappings in the map items . | |
CompositeDataSupport(SortedMap | |
CompositeDataSupport(CompositeType compositeType, String[] itemNames, Object[] itemValues) Constructs a CompositeDataSupport instance with the specified compositeType , whose item values are specified by itemValues[] , in the same order as in itemNames[] . |
boolean | containsKey(String key) Returns true if and only if this CompositeData instance contains an item whose name is key . |
Object | get(String key) Returns the value of the item whose name is key . |
Object[] | getAll(String[] keys) Returns an array of the values of the items whose names are specified by keys , in the same order as keys . |
CompositeType | getCompositeType() Returns the composite type of this composite data instance. |