API Overview API Index Package Overview Direct link to this page
JDK 1.6
  javax.management.openmbean. SimpleType View Source
Author(s)
Sun Microsystems, Inc.
Since
1.5
Version
3.26 05/11/17
Serial
Hierarchy
 Object
      OpenType
          SimpleType
Implements
Subclasses
Description
publicfinal class SimpleType
  The SimpleType class is the open type class whose instances describe all open data values which are neither arrays, nor CompositeData values, nor TabularData values.
See also:   
Constructors
private SimpleType (Class< T> valueClass)
Methods
Hide/Show inherited methods
public boolean equals (Object obj) [Specified in OpenType]
  Compares the specified obj parameter with this SimpleType instance for equality.
public String getClassName () [Inherited From OpenType]
  Returns the fully qualified Java class name of the open data values this open type describes.
public String getDescription () [Inherited From OpenType]
  Returns the text description of this OpenType instance.
pack-privatesynchronized Descriptor getDescriptor () [Inherited From OpenType]
public String getTypeName () [Inherited From OpenType]
  Returns the name of this OpenType instance.
public int hashCode () [Specified in OpenType]
  Returns the hash code value for this SimpleType instance.
public boolean isArray () [Inherited From OpenType]
  Returns true if the open data values this open type describes are arrays, false otherwise.
pack-private boolean isAssignableFrom (OpenType<Object> ot) [Inherited From OpenType]
  Tests whether values of the given type can be assigned to this open type.
public boolean isValue (Object obj) [Specified in OpenType]
  Tests whether obj is a value for this SimpleType instance.
public Object readResolve () throws ObjectStreamException
  Replace an object read from an ObjectInputStream with the unique instance for that value.
public String toString () [Specified in OpenType]
  Returns a string representation of this SimpleType instance.
Fields
Hide/Show inherited fields
@Deprecated
publicfinalstatic String ALLOWED_CLASSNAMES [Inherited From OpenType]
publicfinalstatic List<String> ALLOWED_CLASSNAMES_LIST [Inherited From OpenType]
  List of the fully qualified names of the Java classes allowed for open data values.
publicfinalstatic SimpleType<BigDecimal> BIGDECIMAL
The SimpleType instance describing values whose Java class name is java.math.BigDecimal.
publicfinalstatic SimpleType<BigInteger> BIGINTEGER
The SimpleType instance describing values whose Java class name is java.math.BigInteger.
publicfinalstatic SimpleType<Boolean> BOOLEAN
The SimpleType instance describing values whose Java class name is java.lang.Boolean.
publicfinalstatic SimpleType<Byte> BYTE
The SimpleType instance describing values whose Java class name is java.lang.Byte.
publicfinalstatic SimpleType<Character> CHARACTER
The SimpleType instance describing values whose Java class name is java.lang.Character.
publicfinalstatic SimpleType<Date> DATE
The SimpleType instance describing values whose Java class name is java.util.Date.
publicfinalstatic SimpleType<Double> DOUBLE
The SimpleType instance describing values whose Java class name is java.lang.Double.
publicfinalstatic SimpleType<Float> FLOAT
The SimpleType instance describing values whose Java class name is java.lang.Float.
publicfinalstatic SimpleType<Integer> INTEGER
The SimpleType instance describing values whose Java class name is java.lang.Integer.
publicfinalstatic SimpleType<Long> LONG
The SimpleType instance describing values whose Java class name is java.lang.Long.
publicfinalstatic SimpleType<ObjectName> OBJECTNAME
The SimpleType instance describing values whose Java class name is javax.management.ObjectName.
pack-privatefinalstatic long serialVersionUID = "2215577471957694503" [Overrides OpenType]
publicfinalstatic SimpleType<Short> SHORT
The SimpleType instance describing values whose Java class name is java.lang.Short.
publicfinalstatic SimpleType<String> STRING
The SimpleType instance describing values whose Java class name is java.lang.String.
publicfinalstatic SimpleType<Void> VOID
The SimpleType instance describing values whose Java class name is java.lang.Void.
Nested Classes
Generated By: JavaOnTracks Doclet 0.1.4     ©Thibaut Colar