API Overview API Index Package Overview Direct link to this page
JDK 1.6
  javax.management.openmbean. CompositeData View Source
Author(s)
Sun Microsystems, Inc.
Since
1.5
Version
3.25 05/11/17
Serial
Hierarchy
 CompositeData
Subinterfaces
Description
public interface CompositeData
  The CompositeData interface specifies the behavior of a specific type of complex open data objects which represent composite data structures.
See also:   
Methods
Hide/Show inherited methods
public boolean containsKey (String key)
  Returns true if and only if this CompositeData instance contains an item whose name is key.
public boolean containsValue (Object value)
  Returns true if and only if this CompositeData instance contains an item whose value is value.
public boolean equals (Object obj)
  Compares the specified obj parameter with this CompositeData instance for equality.
public Object get (String key)
  Returns the value of the item whose name is key.
public 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.
public CompositeType getCompositeType ()
  Returns the composite type of this composite data instance.
public int hashCode ()
  Returns the hash code value for this CompositeData instance.
public String toString ()
  Returns a string representation of this CompositeData instance.
public Collection<Object> values ()
  Returns an unmodifiable Collection view of the item values contained in this CompositeData instance.
Fields
Hide/Show inherited fields
Generated By: JavaOnTracks Doclet 0.1.4     ©Thibaut Colar