public static enum AsyncAgentController.AgentState extends java.lang.Enum<AsyncAgentController.AgentState>
States that agent processing can be in
Enum Constant and Description |
---|
CANCELLED |
COMPLETED |
DONE |
ERROR |
QUEUED |
RUNNING |
Modifier and Type | Method and Description |
---|---|
static AsyncAgentController.AgentState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AsyncAgentController.AgentState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AsyncAgentController.AgentState QUEUED
public static final AsyncAgentController.AgentState RUNNING
public static final AsyncAgentController.AgentState COMPLETED
public static final AsyncAgentController.AgentState DONE
public static final AsyncAgentController.AgentState ERROR
public static final AsyncAgentController.AgentState CANCELLED
public static AsyncAgentController.AgentState[] values()
for (AsyncAgentController.AgentState c : AsyncAgentController.AgentState.values()) System.out.println(c);
public static AsyncAgentController.AgentState 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