Enum Class AgentStatus

java.lang.Object
java.lang.Enum<AgentStatus>
dev.agenor.core.AgentStatus
All Implemented Interfaces:
Serializable, Comparable<AgentStatus>, Constable

public enum AgentStatus extends Enum<AgentStatus>
Enumeration of possible agent states
  • Enum Constant Details

    • RUNNING

      public static final AgentStatus RUNNING
      Agent is running and healthy
    • STOPPED

      public static final AgentStatus STOPPED
      Agent is stopped
    • STARTING

      public static final AgentStatus STARTING
      Agent is starting up
    • STOPPING

      public static final AgentStatus STOPPING
      Agent is shutting down
    • ERROR

      public static final AgentStatus ERROR
      Agent encountered an error
    • CRASHED

      public static final AgentStatus CRASHED
      Agent crashed and needs recovery
    • SUSPENDED

      public static final AgentStatus SUSPENDED
      Agent is temporarily suspended
    • UNKNOWN

      public static final AgentStatus UNKNOWN
      Agent status is unknown
  • Method Details

    • values

      public static AgentStatus[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static AgentStatus valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null