Enum Class RunRegistry.RunState

java.lang.Object
java.lang.Enum<RunRegistry.RunState>
ai.pipestream.module.pipelineprobe.pipelinecrawl.RunRegistry.RunState
All Implemented Interfaces:
Serializable, Comparable<RunRegistry.RunState>, Constable
Enclosing class:
RunRegistry

public static enum RunRegistry.RunState extends Enum<RunRegistry.RunState>
Run state for the runs listing.
  • Enum Constant Details

    • RUNNING

      public static final RunRegistry.RunState RUNNING
      The run thread is still executing.
    • TERMINAL

      public static final RunRegistry.RunState TERMINAL
      The run has finished (succeeded or failed).
  • Method Details

    • values

      public static RunRegistry.RunState[] 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 RunRegistry.RunState 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