com.caucho.env.hprof
Enum HprofParser.FieldType
java.lang.Object
java.lang.Enum<HprofParser.FieldType>
com.caucho.env.hprof.HprofParser.FieldType
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<HprofParser.FieldType>
- Enclosing class:
- HprofParser
public static enum HprofParser.FieldType
- extends java.lang.Enum<HprofParser.FieldType>
| Methods inherited from class java.lang.Enum |
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
getClass, notify, notifyAll, wait, wait, wait |
NONE
public static final HprofParser.FieldType NONE
RES_1
public static final HprofParser.FieldType RES_1
OBJECT
public static final HprofParser.FieldType OBJECT
RES_3
public static final HprofParser.FieldType RES_3
BOOLEAN
public static final HprofParser.FieldType BOOLEAN
CHAR
public static final HprofParser.FieldType CHAR
FLOAT
public static final HprofParser.FieldType FLOAT
DOUBLE
public static final HprofParser.FieldType DOUBLE
BYTE
public static final HprofParser.FieldType BYTE
SHORT
public static final HprofParser.FieldType SHORT
INTEGER
public static final HprofParser.FieldType INTEGER
LONG
public static final HprofParser.FieldType LONG
values
public static HprofParser.FieldType[] values()
- Returns an array containing the constants of this enum type, in
the order they are declared. This method may be used to iterate
over the constants as follows:
for (HprofParser.FieldType c : HprofParser.FieldType.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static HprofParser.FieldType valueOf(java.lang.String name)
- Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)
- Parameters:
name - the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException - if this enum type has no constant
with the specified name
java.lang.NullPointerException - if the argument is null