Enum Class StateDoActionPolicy

java.lang.Object
java.lang.Enum<StateDoActionPolicy>
org.springframework.statemachine.action.StateDoActionPolicy
All Implemented Interfaces:
Serializable, Comparable<StateDoActionPolicy>, Constable

public enum StateDoActionPolicy extends Enum<StateDoActionPolicy>
Enumerations for possible state do action policies. IMMEDIATE_CANCEL is a default setting.
Author:
Janne Valkealahti
  • Enum Constant Details

    • IMMEDIATE_CANCEL

      public static final StateDoActionPolicy IMMEDIATE_CANCEL
      Policy interrupting action immediately when state is exited.
    • TIMEOUT_CANCEL

      public static final StateDoActionPolicy TIMEOUT_CANCEL
      Policy interrupting action after a timeout before state is exited.
  • Method Details

    • values

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