Enum Class FlowExecutionStatus

java.lang.Object
java.lang.Enum<FlowExecutionStatus>
org.springframework.webflow.engine.impl.FlowExecutionStatus
All Implemented Interfaces:
Serializable, Comparable<FlowExecutionStatus>, Constable

public enum FlowExecutionStatus extends Enum<FlowExecutionStatus>
A enum used internally by FlowExecutionImpl to track its status. Flow Executions initially start out in NOT_STARTED. After start is called, they are ACTIVE. After ending, their status is updated to ENDED.
  • Enum Constant Details

    • NOT_STARTED

      public static final FlowExecutionStatus NOT_STARTED
      The flow execution has not yet started.
    • ACTIVE

      public static final FlowExecutionStatus ACTIVE
      The flow execution has started and a session is active.
    • ENDED

      public static final FlowExecutionStatus ENDED
      The flow execution has ended.
  • Method Details

    • values

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