public static enum TraceEngine.State extends Enum<TraceEngine.State>
Enum Constant and Description |
---|
RUNNING_FILE |
SHUT_DOWN |
SHUTTING_DOWN |
STARTING_UP |
Modifier and Type | Method and Description |
---|---|
static TraceEngine.State |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TraceEngine.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TraceEngine.State STARTING_UP
public static final TraceEngine.State RUNNING_FILE
public static final TraceEngine.State SHUTTING_DOWN
public static final TraceEngine.State SHUT_DOWN
public static TraceEngine.State[] values()
for (TraceEngine.State c : TraceEngine.State.values()) System.out.println(c);
public static TraceEngine.State valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null