Enum Class EPDataFlowState

java.lang.Object
java.lang.Enum<EPDataFlowState>
com.espertech.esper.common.client.dataflow.core.EPDataFlowState
All Implemented Interfaces:
Serializable, Comparable<EPDataFlowState>, Constable

public enum EPDataFlowState extends Enum<EPDataFlowState>
Data flow instance states.
  • Enum Constant Details

    • INSTANTIATED

      public static final EPDataFlowState INSTANTIATED
      Start state: the state a data flow instance is in when it gets instantiated.
    • RUNNING

      public static final EPDataFlowState RUNNING
      Running means the data flow instance is currently executing.
    • COMPLETE

      public static final EPDataFlowState COMPLETE
      Complete means the data flow instance completed.
    • CANCELLED

      public static final EPDataFlowState CANCELLED
      Cancelled means the data flow instance was cancelled.
  • Method Details

    • values

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