com.caucho.env.hprof
Enum HprofParser.DumpType
java.lang.Object
java.lang.Enum<HprofParser.DumpType>
com.caucho.env.hprof.HprofParser.DumpType
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<HprofParser.DumpType>
- Enclosing class:
- HprofParser
public static enum HprofParser.DumpType
- extends java.lang.Enum<HprofParser.DumpType>
|
Method Summary |
static HprofParser.DumpType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static HprofParser.DumpType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared. |
| 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.DumpType NONE
ROOT_JNI_GLOBAL
public static final HprofParser.DumpType ROOT_JNI_GLOBAL
ROOT_JNI_LOCAL
public static final HprofParser.DumpType ROOT_JNI_LOCAL
ROOT_JAVA_FRAME
public static final HprofParser.DumpType ROOT_JAVA_FRAME
ROOT_NATIVE_STACK
public static final HprofParser.DumpType ROOT_NATIVE_STACK
ROOT_STICKY_CLASS
public static final HprofParser.DumpType ROOT_STICKY_CLASS
ROOT_THREAD_BLOCK
public static final HprofParser.DumpType ROOT_THREAD_BLOCK
ROOT_MONITOR_USED
public static final HprofParser.DumpType ROOT_MONITOR_USED
ROOT_THREAD_OBJECT
public static final HprofParser.DumpType ROOT_THREAD_OBJECT
RES_09
public static final HprofParser.DumpType RES_09
RES_0A
public static final HprofParser.DumpType RES_0A
RES_0B
public static final HprofParser.DumpType RES_0B
RES_0C
public static final HprofParser.DumpType RES_0C
RES_0D
public static final HprofParser.DumpType RES_0D
RES_0E
public static final HprofParser.DumpType RES_0E
RES_0F
public static final HprofParser.DumpType RES_0F
RES_10
public static final HprofParser.DumpType RES_10
RES_11
public static final HprofParser.DumpType RES_11
RES_12
public static final HprofParser.DumpType RES_12
RES_13
public static final HprofParser.DumpType RES_13
RES_14
public static final HprofParser.DumpType RES_14
RES_15
public static final HprofParser.DumpType RES_15
RES_16
public static final HprofParser.DumpType RES_16
RES_17
public static final HprofParser.DumpType RES_17
RES_18
public static final HprofParser.DumpType RES_18
RES_19
public static final HprofParser.DumpType RES_19
RES_1A
public static final HprofParser.DumpType RES_1A
RES_1B
public static final HprofParser.DumpType RES_1B
RES_1C
public static final HprofParser.DumpType RES_1C
RES_1D
public static final HprofParser.DumpType RES_1D
RES_1E
public static final HprofParser.DumpType RES_1E
RES_1F
public static final HprofParser.DumpType RES_1F
CLASS_DUMP
public static final HprofParser.DumpType CLASS_DUMP
INSTANCE_DUMP
public static final HprofParser.DumpType INSTANCE_DUMP
OBJECT_ARRAY_DUMP
public static final HprofParser.DumpType OBJECT_ARRAY_DUMP
PRIM_ARRAY_DUMP
public static final HprofParser.DumpType PRIM_ARRAY_DUMP
ROOT_UNKNOWN
public static final HprofParser.DumpType ROOT_UNKNOWN
values
public static HprofParser.DumpType[] 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.DumpType c : HprofParser.DumpType.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.DumpType 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