Enum Class StepState

java.lang.Object
java.lang.Enum<StepState>
com.inductiveautomation.sfc.StepState
All Implemented Interfaces:
Serializable, Comparable<StepState>, Constable

public enum StepState extends Enum<StepState>
  • Enum Constant Details

    • Unvisited

      public static final StepState Unvisited
    • Running

      public static final StepState Running
    • Pausing

      public static final StepState Pausing
    • Paused

      public static final StepState Paused
    • Resuming

      public static final StepState Resuming
    • Stopping

      public static final StepState Stopping
    • Visited

      public static final StepState Visited
  • Method Details

    • values

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