public static enum Runner.State extends Enum<Runner.State>
| Enum Constant and Description |
|---|
Closed |
Init |
Opened |
OpenFailed |
Opening |
Started |
Stopped |
Stopping |
| Modifier and Type | Method and Description |
|---|---|
static Runner.State |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Runner.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Runner.State Init
public static final Runner.State Opening
public static final Runner.State OpenFailed
public static final Runner.State Opened
public static final Runner.State Started
public static final Runner.State Stopping
public static final Runner.State Stopped
public static final Runner.State Closed
public static Runner.State[] values()
for (Runner.State c : Runner.State.values()) System.out.println(c);
public static Runner.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 nullCopyright © 2016 Neeve Research, LLC. All Rights Reserved.