public enum TraceType extends java.lang.Enum<TraceType>
Enum Constant and Description |
---|
CONTEXT
Context changes.
|
CONTROL
Control/Branch changes.
|
ENTRY
Entry point searches/calls.
|
FUNCTION
Function calls.
|
INTERNAL
Internal function calls.
|
INTERPRETER
Interpreter parsing.
|
VALUE
Value changes.
|
Modifier and Type | Method and Description |
---|---|
static TraceType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TraceType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TraceType CONTEXT
public static final TraceType CONTROL
public static final TraceType ENTRY
public static final TraceType FUNCTION
public static final TraceType INTERNAL
public static final TraceType INTERPRETER
public static final TraceType VALUE
public static final TraceType[] VALUES
public static TraceType[] values()
for (TraceType c : TraceType.values()) System.out.println(c);
public static TraceType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null