Enum AgentProcessStatusCode
-
- All Implemented Interfaces:
-
java.io.Serializable,kotlin.Comparable
public enum AgentProcessStatusCode extends Enum<AgentProcessStatusCode>
Stuck means we failed to find a plan from here
-
-
Field Summary
Fields Modifier and Type Field Description private final Stringnameprivate final Integerordinalprivate final EnumEntries<AgentProcessStatusCode>entries
-
Enum Constant Summary
Enum Constants Enum Constant Description NOT_STARTEDThe process has not started yet
RUNNINGThe process is running without any known problems
COMPLETEDThe process has completed successfully
FAILEDGame over. The process has failed
TERMINATEDThe process has been killed by an early termination policy
KILLEDThe process has been killed by the user or platform, from outside
STUCKThe process cannot formulate a plan to progress. This does not necessarily mean failure. Something might change
WAITINGThe process is waiting for user input or another external event
PAUSEDThe process is running without error but has paused because of scheduling policy.
-
Method Summary
Modifier and Type Method Description final AgentProcessStatusCodevalueOf(String value)Returns the enum constant of this type with the specified name. final Array<AgentProcessStatusCode>values()Returns an array containing the constants of this enum type, in the order they're declared. final EnumEntries<AgentProcessStatusCode>getEntries()Stuck means we failed to find a plan from here -
-
Method Detail
-
valueOf
final AgentProcessStatusCode valueOf(String value)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
-
values
final Array<AgentProcessStatusCode> values()
Returns an array containing the constants of this enum type, in the order they're declared.
This method may be used to iterate over the constants.
-
getEntries
final EnumEntries<AgentProcessStatusCode> getEntries()
Stuck means we failed to find a plan from here
-
-
-
-