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

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

Introduction

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

The text is from its open source code.

Method

booleancontainsKey(Object[] key)
Returns true if and only if this TabularData instance contains a CompositeData value (ie a row) whose index is the specified key.
CompositeDataget(Object[] key)
Returns the CompositeData value whose index is key, or null if there is no value mapping to key, in this TabularData instance.
TabularTypegetTabularType()
Returns the tabular type describing this TabularData instance.
booleanisEmpty()
Returns true if the number of CompositeData values (ie the number of rows) contained in this TabularData instance is zero.
SetkeySet()
Returns a set view of the keys (ie the index values) of the CompositeData values (ie the rows) contained in this TabularData instance.
voidput(CompositeData value)
Adds value to this TabularData instance.
intsize()
Returns the number of CompositeData values (ie the number of rows) contained in this TabularData instance.
Collectionvalues()
Returns a collection view of the CompositeData values (ie the rows) contained in this TabularData instance.