Package org.azd.enums

Enum Class QueuePriority

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

public enum QueuePriority extends Enum<QueuePriority>
Represents a reference to an orchestration plan.
  • Enum Constant Details

    • ABOVENORMAL

      public static final QueuePriority ABOVENORMAL
      Above normal priority.
    • BELOWNORMAL

      public static final QueuePriority BELOWNORMAL
      Below normal priority.
    • HIGH

      public static final QueuePriority HIGH
      High priority.
    • LOW

      public static final QueuePriority LOW
      Low priority.
    • NORMAL

      public static final QueuePriority NORMAL
      Normal priority.
  • Method Details

    • values

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