Enum Class AutomationStatus

java.lang.Object
java.lang.Enum<AutomationStatus>
com.kingsrook.qqq.backend.core.actions.automation.AutomationStatus
All Implemented Interfaces:
PossibleValueEnum<Integer>, Serializable, Comparable<AutomationStatus>, Constable

public enum AutomationStatus extends Enum<AutomationStatus> implements PossibleValueEnum<Integer>
enum of possible values for a record's Automation Status.
  • Enum Constant Details

    • PENDING_INSERT_AUTOMATIONS

      public static final AutomationStatus PENDING_INSERT_AUTOMATIONS
    • RUNNING_INSERT_AUTOMATIONS

      public static final AutomationStatus RUNNING_INSERT_AUTOMATIONS
    • FAILED_INSERT_AUTOMATIONS

      public static final AutomationStatus FAILED_INSERT_AUTOMATIONS
    • PENDING_UPDATE_AUTOMATIONS

      public static final AutomationStatus PENDING_UPDATE_AUTOMATIONS
    • RUNNING_UPDATE_AUTOMATIONS

      public static final AutomationStatus RUNNING_UPDATE_AUTOMATIONS
    • FAILED_UPDATE_AUTOMATIONS

      public static final AutomationStatus FAILED_UPDATE_AUTOMATIONS
    • OK

      public static final AutomationStatus OK
  • Method Details

    • values

      public static AutomationStatus[] 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 AutomationStatus 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
    • getById

      public static AutomationStatus getById(Integer id)
      Get instance by id
    • getId

      public Integer getId()
      Getter for id
    • getLabel

      public String getLabel()
      Getter for label
    • getPossibleValueId

      public Integer getPossibleValueId()
      Specified by:
      getPossibleValueId in interface PossibleValueEnum<Integer>
    • getPossibleValueLabel

      public String getPossibleValueLabel()
      Specified by:
      getPossibleValueLabel in interface PossibleValueEnum<Integer>
    • getInsertOrUpdate

      public String getInsertOrUpdate()