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