com.caucho.env.hprof
Enum HprofParser.TagType
java.lang.Object
java.lang.Enum<HprofParser.TagType>
com.caucho.env.hprof.HprofParser.TagType
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<HprofParser.TagType>
- Enclosing class:
- HprofParser
public static enum HprofParser.TagType
- extends java.lang.Enum<HprofParser.TagType>
|
Method Summary |
static HprofParser.TagType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static HprofParser.TagType[] |
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 |
UNKNOWN
public static final HprofParser.TagType UNKNOWN
STRING_IN_UTF8
public static final HprofParser.TagType STRING_IN_UTF8
LOAD_CLASS
public static final HprofParser.TagType LOAD_CLASS
UNLOAD_CLASS
public static final HprofParser.TagType UNLOAD_CLASS
STACK_FRAME
public static final HprofParser.TagType STACK_FRAME
STACK_TRACE
public static final HprofParser.TagType STACK_TRACE
ALLOC_SITES
public static final HprofParser.TagType ALLOC_SITES
HEAP_SUMMARY
public static final HprofParser.TagType HEAP_SUMMARY
RES_8
public static final HprofParser.TagType RES_8
RES_9
public static final HprofParser.TagType RES_9
START_THREAD
public static final HprofParser.TagType START_THREAD
END_THREAD
public static final HprofParser.TagType END_THREAD
HEAP_DUMP
public static final HprofParser.TagType HEAP_DUMP
CPU_SAMPLES
public static final HprofParser.TagType CPU_SAMPLES
CONTROL_SETTINGS
public static final HprofParser.TagType CONTROL_SETTINGS
RES_F
public static final HprofParser.TagType RES_F
RES_10
public static final HprofParser.TagType RES_10
RES_11
public static final HprofParser.TagType RES_11
RES_12
public static final HprofParser.TagType RES_12
RES_13
public static final HprofParser.TagType RES_13
RES_14
public static final HprofParser.TagType RES_14
RES_15
public static final HprofParser.TagType RES_15
RES_16
public static final HprofParser.TagType RES_16
RES_17
public static final HprofParser.TagType RES_17
RES_18
public static final HprofParser.TagType RES_18
RES_19
public static final HprofParser.TagType RES_19
RES_1A
public static final HprofParser.TagType RES_1A
RES_1B
public static final HprofParser.TagType RES_1B
HEAP_DUMP_SEGMENT
public static final HprofParser.TagType HEAP_DUMP_SEGMENT
RES_1D
public static final HprofParser.TagType RES_1D
RES_1E
public static final HprofParser.TagType RES_1E
RES_1F
public static final HprofParser.TagType RES_1F
RES_20
public static final HprofParser.TagType RES_20
RES_21
public static final HprofParser.TagType RES_21
RES_22
public static final HprofParser.TagType RES_22
RES_23
public static final HprofParser.TagType RES_23
RES_24
public static final HprofParser.TagType RES_24
RES_25
public static final HprofParser.TagType RES_25
RES_26
public static final HprofParser.TagType RES_26
RES_27
public static final HprofParser.TagType RES_27
RES_28
public static final HprofParser.TagType RES_28
RES_29
public static final HprofParser.TagType RES_29
RES_2A
public static final HprofParser.TagType RES_2A
RES_2B
public static final HprofParser.TagType RES_2B
HEAP_DUMP_END
public static final HprofParser.TagType HEAP_DUMP_END
RES_2D
public static final HprofParser.TagType RES_2D
RES_2E
public static final HprofParser.TagType RES_2E
RES_2F
public static final HprofParser.TagType RES_2F
values
public static HprofParser.TagType[] 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.TagType c : HprofParser.TagType.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.TagType 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