Enum Class Optimizer.State

java.lang.Object
java.lang.Enum<Optimizer.State>
org.scictrl.csshell.epics.server.application.control.Optimizer.State
All Implemented Interfaces:
Serializable, Comparable<Optimizer.State>, Constable
Enclosing interface:
Optimizer

public static enum Optimizer.State extends Enum<Optimizer.State>
Optimization cycle state.
  • Enum Constant Details

    • INITIAL

      public static final Optimizer.State INITIAL
      Initial status, before first inputs have been calculated.
    • SEEDING

      public static final Optimizer.State SEEDING
      Optimization is in progress.
    • STEPPING

      public static final Optimizer.State STEPPING
      Optimization is in progress.
    • DONE

      public static final Optimizer.State DONE
      Optimization has reached end.
    • ERROR

      public static final Optimizer.State ERROR
      Optimization has been interrupted by error.
  • Method Details

    • values

      public static Optimizer.State[] 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 Optimizer.State 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