public static enum RemoteExecutionActionEvent.State extends Enum<RemoteExecutionActionEvent.State>
Enum Constant and Description |
---|
ACTION_CANCELLED |
ACTION_FAILED |
ACTION_SUCCEEDED |
COMPUTING_ACTION |
DELETING_STALE_OUTPUTS |
EXECUTING |
MATERIALIZING_OUTPUTS |
UPLOADING_ACTION |
UPLOADING_INPUTS |
WAITING |
Modifier and Type | Method and Description |
---|---|
String |
getAbbreviateName()
Abbreviated name for the current state.
|
static RemoteExecutionActionEvent.State |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RemoteExecutionActionEvent.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RemoteExecutionActionEvent.State WAITING
public static final RemoteExecutionActionEvent.State COMPUTING_ACTION
public static final RemoteExecutionActionEvent.State UPLOADING_INPUTS
public static final RemoteExecutionActionEvent.State UPLOADING_ACTION
public static final RemoteExecutionActionEvent.State EXECUTING
public static final RemoteExecutionActionEvent.State DELETING_STALE_OUTPUTS
public static final RemoteExecutionActionEvent.State MATERIALIZING_OUTPUTS
public static final RemoteExecutionActionEvent.State ACTION_SUCCEEDED
public static final RemoteExecutionActionEvent.State ACTION_FAILED
public static final RemoteExecutionActionEvent.State ACTION_CANCELLED
public static RemoteExecutionActionEvent.State[] values()
for (RemoteExecutionActionEvent.State c : RemoteExecutionActionEvent.State.values()) System.out.println(c);
public static RemoteExecutionActionEvent.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 nullpublic String getAbbreviateName()