public enum InterpreterState extends java.lang.Enum<InterpreterState>
| Enum Constant and Description |
|---|
ALLOCATING_RESOURCES
The interpreter is allocating resources and prepares to run.
|
DEALLOCATING_RESOURCES
The interpreter is shutting down.
|
RUNNING
The interpreter is running and able to process calls.
|
STARTED
The interpreter started.
|
STOPPED
The interpreter stopped.
|
| Modifier and Type | Method and Description |
|---|---|
static InterpreterState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static InterpreterState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InterpreterState STARTED
public static final InterpreterState ALLOCATING_RESOURCES
public static final InterpreterState RUNNING
public static final InterpreterState DEALLOCATING_RESOURCES
public static final InterpreterState STOPPED
public static InterpreterState[] values()
for (InterpreterState c : InterpreterState.values()) System.out.println(c);
public static InterpreterState 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