| |
|
| java.lang.Object javax.management.openmbean.OpenType javax.management.openmbean.ArrayType
ArrayType | public class ArrayType extends OpenType implements Serializable(Code) | | The ArrayType class is the open type class whose instances describe all open data values
which are n-dimensional arrays of open data values
version: $Revision: 1.13 $ |
Constructor Summary | |
public | ArrayType(int dimension, OpenType elementType) Constructs an ArrayType instance describing open data values
which are arrays with dimension dimension of elements whose
open type is elementType. |
ArrayType | public ArrayType(int dimension, OpenType elementType) throws OpenDataException(Code) | | Constructs an ArrayType instance describing open data values
which are arrays with dimension dimension of elements whose
open type is elementType.
Parameters: dimension - The dimension of this ArrayType and should be greaterthan 0; Parameters: elementType - The OpenType element of this ArrayType throws: OpenDataException - if elementType is instance of ArrayType throws: IllegalArgumentException - if dimension is less than or zero |
equals | public boolean equals(Object object)(Code) | | Check if object is equal with this ArrayType
true If Equal |
getDimension | public int getDimension()(Code) | | Returns the Dimension described by this ArrayType
int The dimension |
getElementOpenType | public OpenType getElementOpenType()(Code) | | Returns the OpenType of element values contained in
in the arrays described by this ArrayType instance
OpenType The OpenType instance |
hashCode | public int hashCode()(Code) | | Compute the hashCode of this ArrayType
int The computed hashCode |
isValue | public boolean isValue(Object object)(Code) | | Test whether object is a value for this ArrayType instance.
boolean True if object is a value |
toString | public String toString()(Code) | | Format this ArrayType is a String
String The readable format |
Fields inherited from javax.management.openmbean.OpenType | final public static String[] ALLOWED_CLASSNAMES(Code)(Java Doc)
|
|
|
|