Java javax.management.openmbean CompositeDataSupport fields, constructors, methods, implement or subclass

Example usage for Java javax.management.openmbean CompositeDataSupport fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for javax.management.openmbean CompositeDataSupport.

The text is from its open source code.

Constructor

CompositeDataSupport(CompositeType compositeType, Map items)

Constructs a CompositeDataSupport instance with the specified compositeType , whose item names and corresponding values are given by the mappings in the map items .

CompositeDataSupport(SortedMap items, CompositeType compositeType)
CompositeDataSupport(CompositeType compositeType, String[] itemNames, Object[] itemValues)

Constructs a CompositeDataSupport instance with the specified compositeType , whose item values are specified by itemValues[] , in the same order as in itemNames[] .

Method

booleancontainsKey(String key)
Returns true if and only if this CompositeData instance contains an item whose name is key .
Objectget(String key)
Returns the value of the item whose name is key .
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 .
CompositeTypegetCompositeType()
Returns the composite type of this composite data instance.