| java.lang.Object javax.management.openmbean.TabularDataSupport
TabularDataSupport | public TabularDataSupport(TabularType tabularType)(Code) | | Construct Tabular Data with an initial capacity of 101 and a load
factor of 0.75
Parameters: tabularType - the tabular type of the data exception: IllegalArgumentException - for a null argument |
TabularDataSupport | public TabularDataSupport(TabularType tabularType, int initialCapacity, float loadFactor)(Code) | | Construct Tabular Data
Parameters: tabularType - the tabular type of the data Parameters: initialCapacity - the initial capacity of the map Parameters: loadFactor - the load factory of the map exception: IllegalArgumentException - for a null argument |
clear | public void clear()(Code) | | |
containsValue | public boolean containsValue(Object value)(Code) | | |
equals | public boolean equals(Object obj)(Code) | | Compares the specified obj parameter with this TabularDataSupport instance for equality.
Returns true if and only if all of the following statements are true:
- obj is non null,
- obj also implements the TabularData interface,
- their tabular types are equal
- their contents (ie all CompositeData values) are equal.
This ensures that this equals method works properly for obj parameters which are different implementations of the TabularData interface.
|
hashCode | public int hashCode()(Code) | | |
isEmpty | public boolean isEmpty()(Code) | | |
|
|