Enum Class HxState

java.lang.Object
java.lang.Enum<HxState>
com.hexaly.optimizer.HxState
All Implemented Interfaces:
Serializable, Comparable<HxState>, Constable

public enum HxState extends Enum<HxState>
State of Hexaly Optimizer environment.
See Also:
  • Enum Constant Details

    • Modeling

      public static final HxState Modeling
      Model is being built.
    • Running

      public static final HxState Running
      Optimizer is running.
    • Paused

      public static final HxState Paused
      Optimizer is paused.
    • Stopped

      public static final HxState Stopped
      Optimizer is stopped.
  • Method Details

    • values

      public static HxState[] 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 HxState 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