API Overview API Index Package Overview Direct link to this page
JDK 1.6
  javax.management.openmbean. CompositeDataSupport View Source
Author(s)
Sun Microsystems, Inc.
Since
1.5
Version
3.34 05/11/17
Serial
Hierarchy
 Object
      CompositeDataSupport
Implements
 CompositeData
 Serializable
Subclasses
Description
public class CompositeDataSupport
  The CompositeDataSupport class is the open data class which implements the CompositeData interface.
See also:   
Constructors
public CompositeDataSupport (CompositeType compositeType, Map<String, Object> items) throws OpenDataException
  Constructs a CompositeDataSupport instance with the specified compositeType, whose item names and corresponding values are given by the mappings in the map items.
public CompositeDataSupport (CompositeType compositeType, String itemNames, Object itemValues) throws OpenDataException
  Constructs a CompositeDataSupport instance with the specified compositeType, whose item values are specified by itemValues[], in the same order as in itemNames[].
Methods
Hide/Show inherited methods
public boolean containsKey (String key) [Specified in CompositeData]
  Returns true if and only if this CompositeData instance contains an item whose name is key.
public boolean containsValue (Object value) [Specified in CompositeData]
Returns true if and only if this CompositeData instance contains an item whose value is value.
public boolean equals (Object obj) [Specified in CompositeData]
  Compares the specified obj parameter with this CompositeDataSupport instance for equality.
public Object get (String key) [Specified in CompositeData]
  Returns the value of the item whose name is key.
public Object getAll (String keys) [Specified in CompositeData]
  Returns an array of the values of the items whose names are specified by keys, in the same order as keys.
public CompositeType getCompositeType () [Specified in CompositeData]
Returns the composite type of this composite data instance.
public int hashCode () [Specified in CompositeData]
  Returns the hash code value for this CompositeDataSupport instance.
public String toString () [Specified in CompositeData]
  Returns a string representation of this CompositeDataSupport instance.
public Collection<Object> values () [Specified in CompositeData]
  Returns an unmodifiable Collection view of the item values contained in this CompositeData instance.
Fields
Hide/Show inherited fields
pack-privatefinalstatic long serialVersionUID = "8003518976613702244"
Nested Classes
Generated By: JavaOnTracks Doclet 0.1.4     ©Thibaut Colar