Package org.azd.enums

Enum Class ApprovalStatus

java.lang.Object
java.lang.Enum<ApprovalStatus>
org.azd.enums.ApprovalStatus
All Implemented Interfaces:
Serializable, Comparable<ApprovalStatus>, Constable

public enum ApprovalStatus extends Enum<ApprovalStatus>
Gets or sets the type of approval.
  • Enum Constant Details

    • APPROVED

      public static final ApprovalStatus APPROVED
      Indicates the approval is approved.
    • CANCELED

      public static final ApprovalStatus CANCELED
      Indicates the approval is canceled.
    • PENDING

      public static final ApprovalStatus PENDING
      Indicates the approval is pending.
    • REASSIGNED

      public static final ApprovalStatus REASSIGNED
      Indicates the approval is reassigned.
    • REJECTED

      public static final ApprovalStatus REJECTED
      Indicates the approval is rejected.
    • SKIPPED

      public static final ApprovalStatus SKIPPED
      Indicates the approval is skipped.
    • UNDEFINED

      public static final ApprovalStatus UNDEFINED
      Indicates the approval does not have the status set.
  • Method Details

    • values

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