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