Example usage for Java javax.management.openmbean TabularData fields, constructors, methods, implement or subclass
The text is from its open source code.
boolean | containsKey(Object[] key) Returns true if and only if this TabularData instance contains a CompositeData value (ie a row) whose index is the specified key. |
CompositeData | get(Object[] key) Returns the CompositeData value whose index is key, or null if there is no value mapping to key, in this TabularData instance. |
TabularType | getTabularType() Returns the tabular type describing this TabularData instance. |
boolean | isEmpty() Returns true if the number of CompositeData values (ie the number of rows) contained in this TabularData instance is zero. |
Set> | keySet() Returns a set view of the keys (ie the index values) of the CompositeData values (ie the rows) contained in this TabularData instance. |
void | put(CompositeData value) Adds value to this TabularData instance. |
int | size() Returns the number of CompositeData values (ie the number of rows) contained in this TabularData instance. |
Collection> | values() Returns a collection view of the CompositeData values (ie the rows) contained in this TabularData instance. |