public static enum HostTraceOptions.HostTraceType extends java.lang.Enum<HostTraceOptions.HostTraceType>
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 HostTraceOptions.HostTraceType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static HostTraceOptions.HostTraceType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HostTraceOptions.HostTraceType MEMORY_TRACE
public static final HostTraceOptions.HostTraceType FILE_TRACE
public static HostTraceOptions.HostTraceType[] values()
for (HostTraceOptions.HostTraceType c : HostTraceOptions.HostTraceType.values()) System.out.println(c);
public static HostTraceOptions.HostTraceType 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