java.lang.Objectjavax.management.openmbean.OpenType<T>
javax.management.openmbean.SimpleType
All Implemented Interfaces:
Serializable
SimpleType
class is the open type class whose instances describe
all open data values which are neither arrays,
nor CompositeData
values,
nor TabularData
values.
It predefines all its possible instances as static fields, and has no public constructor.
Given a SimpleType
instance describing values whose Java class name is className,
the internal fields corresponding to the name and description of this SimpleType
instance
are also set to className.
In other words, its methods getClassName
, getTypeName
and getDescription
all return the same string value className.
1.5
- Field Summary | ||
---|---|---|
static final long | serialVersionUID | |
public static final SimpleType<Void> | VOID | The SimpleType instance describing values whose
Java class name is java.lang.Void . |
public static final SimpleType<Boolean> | BOOLEAN | The SimpleType instance describing values whose
Java class name is java.lang.Boolean . |
public static final SimpleType<Character> | CHARACTER | The SimpleType instance describing values whose
Java class name is java.lang.Character . |
public static final SimpleType<Byte> | BYTE | The SimpleType instance describing values whose
Java class name is java.lang.Byte . |
public static final SimpleType<Short> | SHORT | The SimpleType instance describing values whose
Java class name is java.lang.Short . |
public static final SimpleType<Integer> | INTEGER | The SimpleType instance describing values whose
Java class name is java.lang.Integer . |
public static final SimpleType<Long> | LONG | The SimpleType instance describing values whose
Java class name is java.lang.Long . |
public static final SimpleType<Float> | FLOAT | The SimpleType instance describing values whose
Java class name is java.lang.Float . |
public static final SimpleType<Double> | DOUBLE | The SimpleType instance describing values whose
Java class name is java.lang.Double . |
public static final SimpleType<String> | STRING | The SimpleType instance describing values whose
Java class name is java.lang.String . |
public static final SimpleType<BigDecimal> | BIGDECIMAL | The SimpleType instance describing values whose
Java class name is java.math.BigDecimal . |
public static final SimpleType<BigInteger> | BIGINTEGER | The SimpleType instance describing values whose
Java class name is java.math.BigInteger . |
public static final SimpleType<Date> | DATE | The SimpleType instance describing values whose
Java class name is java.util.Date . |
public static final SimpleType<ObjectName> | OBJECTNAME | The SimpleType instance describing values whose
Java class name is javax.management.ObjectName . |
Fields inherited from javax.management.openmbean.OpenType: |
---|
serialVersionUID, ALLOWED_CLASSNAMES_LIST, ALLOWED_CLASSNAMES |
Method from javax.management.openmbean.SimpleType Summary: |
---|
equals, hashCode, isValue, readResolve, toString |
Methods from javax.management.openmbean.OpenType: |
---|
equals, getClassName, getDescription, getDescriptor, getTypeName, hashCode, isArray, isAssignableFrom, isValue, safeGetClassName, toString |
Methods from java.lang.Object: |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Method from javax.management.openmbean.SimpleType Detail: |
---|
obj parameter with this SimpleType instance for equality.
Two |
SimpleType instance.
The hash code of a SimpleType instance is the the hash code of
the string value returned by the getClassName method.
As |
SimpleType instance. This method returns
|
|
SimpleType instance.
The string representation consists of
the name of this class (ie
As |