Enum AgentProcessStatusCode

    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
    • Constructor Summary

      Constructors 
      Constructor Description
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
      NOT_STARTED

      The process has not started yet

      RUNNING

      The process is running without any known problems

      COMPLETED

      The process has completed successfully

      FAILED

      Game over. The process has failed

      TERMINATED

      The process has been killed by an early termination policy

      KILLED

      The process has been killed by the user or platform, from outside

      STUCK

      The process cannot formulate a plan to progress. This does not necessarily mean failure. Something might change

      WAITING

      The process is waiting for user input or another external event

      PAUSED

      The process is running without error but has paused because of scheduling policy.

    • Method Summary

      Modifier and Type Method Description
      final AgentProcessStatusCode valueOf(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
      • Methods inherited from class kotlin.Enum

        getName, getOrdinal
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

    • 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.