public static enum TraceOptions.TraceType extends java.lang.Enum<TraceOptions.TraceType>
Enum Constant and Description |
---|
FILE_TRACE
FILE_TRACE is used to trigger a file trace
|
MEMORY_TRACE
MEMORY_TRACE is used to trigger a memory trace
|
Modifier and Type | Method and Description |
---|---|
static TraceOptions.TraceType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TraceOptions.TraceType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TraceOptions.TraceType MEMORY_TRACE
public static final TraceOptions.TraceType FILE_TRACE
public static TraceOptions.TraceType[] values()
for (TraceOptions.TraceType c : TraceOptions.TraceType.values()) System.out.println(c);
public static TraceOptions.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