API Overview API Index Package Overview Direct link to this page
JDK 1.6
  javax.management.openmbean. TabularData View Source
Author(s)
Sun Microsystems, Inc.
Since
1.5
Version
3.21 05/11/17
Serial
Hierarchy
 TabularData
Subinterfaces
Description
public interface TabularData
  The TabularData interface specifies the behavior of a specific type of complex open data objects which represent tabular data structures.
See also:   
Methods
Hide/Show inherited methods
public Object calculateIndex (CompositeData value)
  Calculates the index that would be used in this TabularData instance to refer to the specified composite data value parameter if it were added to this instance.
public void clear ()
Removes all CompositeData values (ie rows) from this TabularData instance.
public 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.
public boolean containsValue (CompositeData value)
  Returns true if and only if this TabularData instance contains the specified CompositeData value.
public boolean equals (Object obj)
  Compares the specified obj parameter with this TabularData instance for equality.
public 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.
public TabularType getTabularType ()
  Returns the tabular type describing this TabularData instance.
public int hashCode ()
  Returns the hash code value for this TabularData instance.
public boolean isEmpty ()
  Returns true if the number of CompositeData values (ie the number of rows) contained in this TabularData instance is zero.
public Set<Object> keySet ()
  Returns a set view of the keys (ie the index values) of the CompositeData values (ie the rows) contained in this TabularData instance.
public void put (CompositeData value)
  Adds value to this TabularData instance.
public void putAll (CompositeData values)
  Add all the elements in values to this TabularData instance.
public CompositeData remove (Object key)
  Removes the CompositeData value whose index is key from this TabularData instance, and returns the removed value, or returns null if there is no value whose index is key.
public int size ()
  Returns the number of CompositeData values (ie the number of rows) contained in this TabularData instance.
public String toString ()
  Returns a string representation of this TabularData instance.
public Collection<Object> values ()
  Returns a collection view of the CompositeData values (ie the rows) contained in this TabularData instance.
Fields
Hide/Show inherited fields
Generated By: JavaOnTracks Doclet 0.1.4     ©Thibaut Colar