Enum Class StopReasonEnum

java.lang.Object
java.lang.Enum<StopReasonEnum>
io.cloudreactor.tasksymphony.model.StopReasonEnum
All Implemented Interfaces:
Serializable, Comparable<StopReasonEnum>, Constable

public enum StopReasonEnum extends Enum<StopReasonEnum>
Gets or Sets StopReasonEnum
  • Enum Constant Details

    • MANUAL

      public static final StopReasonEnum MANUAL
    • MAX_EXECUTION_TIME_EXCEEDED

      public static final StopReasonEnum MAX_EXECUTION_TIME_EXCEEDED
    • MISSING_HEARTBEAT

      public static final StopReasonEnum MISSING_HEARTBEAT
    • FAILED_TO_START

      public static final StopReasonEnum FAILED_TO_START
    • WORKFLOW_EXECUTION_STOPPED

      public static final StopReasonEnum WORKFLOW_EXECUTION_STOPPED
    • WORKFLOW_EXECUTION_RETRIED

      public static final StopReasonEnum WORKFLOW_EXECUTION_RETRIED
    • WORKFLOW_EXECUTION_TIMED_OUT

      public static final StopReasonEnum WORKFLOW_EXECUTION_TIMED_OUT
  • Method Details

    • values

      public static StopReasonEnum[] 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 StopReasonEnum 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
    • getValue

      public String getValue()
    • toString

      public String toString()
      Overrides:
      toString in class Enum<StopReasonEnum>
    • fromValue

      public static StopReasonEnum fromValue(String value)