public static enum ExecutionDriver.DriverState extends java.lang.Enum<ExecutionDriver.DriverState>
Modifier and Type | Method and Description |
---|---|
boolean |
isTermainal() |
static ExecutionDriver.DriverState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ExecutionDriver.DriverState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExecutionDriver.DriverState CONTINUE
public static final ExecutionDriver.DriverState FAILED
public static final ExecutionDriver.DriverState SHUTDOWN
public static ExecutionDriver.DriverState[] values()
for (ExecutionDriver.DriverState c : ExecutionDriver.DriverState.values()) System.out.println(c);
public static ExecutionDriver.DriverState 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 nullpublic boolean isTermainal()