Class SimpleType<T>
- Type Parameters:
- T- the Java type that values described by this SimpleType must have.
- 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.
- Since:
- 1.5
- See Also:
- 
Field SummaryFieldsModifier and TypeFieldDescriptionstatic final SimpleType<BigDecimal> TheSimpleTypeinstance describing values whose Java class name isjava.math.BigDecimal.static final SimpleType<BigInteger> TheSimpleTypeinstance describing values whose Java class name isjava.math.BigInteger.static final SimpleType<Boolean> TheSimpleTypeinstance describing values whose Java class name isjava.lang.Boolean.static final SimpleType<Byte> TheSimpleTypeinstance describing values whose Java class name isjava.lang.Byte.static final SimpleType<Character> TheSimpleTypeinstance describing values whose Java class name isjava.lang.Character.static final SimpleType<Date> TheSimpleTypeinstance describing values whose Java class name isjava.util.Date.static final SimpleType<Double> TheSimpleTypeinstance describing values whose Java class name isjava.lang.Double.static final SimpleType<Float> TheSimpleTypeinstance describing values whose Java class name isjava.lang.Float.static final SimpleType<Integer> TheSimpleTypeinstance describing values whose Java class name isjava.lang.Integer.static final SimpleType<Long> TheSimpleTypeinstance describing values whose Java class name isjava.lang.Long.static final SimpleType<ObjectName> TheSimpleTypeinstance describing values whose Java class name isjavax.management.ObjectName.static final SimpleType<Short> TheSimpleTypeinstance describing values whose Java class name isjava.lang.Short.static final SimpleType<String> TheSimpleTypeinstance describing values whose Java class name isjava.lang.String.static final SimpleType<Void> TheSimpleTypeinstance describing values whose Java class name isjava.lang.Void.Fields declared in class OpenTypeALLOWED_CLASSNAMES, ALLOWED_CLASSNAMES_LIST
- 
Method SummaryModifier and TypeMethodDescriptionbooleanCompares the specifiedobjparameter with thisSimpleTypeinstance for equality.inthashCode()Returns the hash code value for thisSimpleTypeinstance.booleanTests whether obj is a value for thisSimpleTypeinstance.Replace an object read from anObjectInputStreamwith the unique instance for that value.toString()Returns a string representation of thisSimpleTypeinstance.Methods declared in class OpenTypegetClassName, getDescription, getTypeName, isArray
- 
Field Details- 
VOIDTheSimpleTypeinstance describing values whose Java class name isjava.lang.Void.
- 
BOOLEANTheSimpleTypeinstance describing values whose Java class name isjava.lang.Boolean.
- 
CHARACTERTheSimpleTypeinstance describing values whose Java class name isjava.lang.Character.
- 
BYTETheSimpleTypeinstance describing values whose Java class name isjava.lang.Byte.
- 
SHORTTheSimpleTypeinstance describing values whose Java class name isjava.lang.Short.
- 
INTEGERTheSimpleTypeinstance describing values whose Java class name isjava.lang.Integer.
- 
LONGTheSimpleTypeinstance describing values whose Java class name isjava.lang.Long.
- 
FLOATTheSimpleTypeinstance describing values whose Java class name isjava.lang.Float.
- 
DOUBLETheSimpleTypeinstance describing values whose Java class name isjava.lang.Double.
- 
STRINGTheSimpleTypeinstance describing values whose Java class name isjava.lang.String.
- 
BIGDECIMALTheSimpleTypeinstance describing values whose Java class name isjava.math.BigDecimal.
- 
BIGINTEGERTheSimpleTypeinstance describing values whose Java class name isjava.math.BigInteger.
- 
DATETheSimpleTypeinstance describing values whose Java class name isjava.util.Date.
- 
OBJECTNAMETheSimpleTypeinstance describing values whose Java class name isjavax.management.ObjectName.
 
- 
- 
Method Details- 
isValueTests whether obj is a value for thisSimpleTypeinstance.This method returns trueif and only if obj is not null and obj's class name is the same as the className field defined for thisSimpleTypeinstance (ie the class name returned by thegetClassNamemethod).
- 
equalsCompares the specifiedobjparameter with thisSimpleTypeinstance for equality.Two SimpleTypeinstances are equal if and only if theirgetClassNamemethods return the same value.
- 
hashCodepublic int hashCode()Returns the hash code value for thisSimpleTypeinstance. The hash code of aSimpleTypeinstance is the hash code of the string value returned by thegetClassNamemethod.As SimpleTypeinstances are immutable, the hash code for this instance is calculated once, on the first call tohashCode, and then the same value is returned for subsequent calls.
- 
toStringReturns a string representation of thisSimpleTypeinstance.The string representation consists of the name of this class (ie javax.management.openmbean.SimpleType) and the type name for this instance (which is the java class name of the values thisSimpleTypeinstance represents).As SimpleTypeinstances are immutable, the string representation for this instance is calculated once, on the first call totoString, and then the same value is returned for subsequent calls.
- 
readResolveReplace an object read from anObjectInputStreamwith the unique instance for that value.- Returns:
- the replacement object.
- Throws:
- ObjectStreamException- if the read object cannot be resolved.
 
 
-