Package org.azd.enums

Enum Class DefinitionQueueStatus

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

public enum DefinitionQueueStatus extends Enum<DefinitionQueueStatus>
A value that indicates whether builds can be queued against this definition.
  • Nested Class Summary

    Nested classes/interfaces inherited from class java.lang.Enum

    Enum.EnumDesc<E extends Enum<E>>
  • Enum Constant Summary

    Enum Constants
    Enum Constant
    Description
    When disabled the definition queue will not allow builds to be queued by users and the system will not queue scheduled, gated or continuous integration builds.
    When enabled the definition queue allows builds to be queued by users, the system will queue scheduled, gated and continuous integration builds, and the queued builds will be started by the system.
    When paused the definition queue allows builds to be queued by users and the system will queue scheduled, gated and continuous integration builds.
  • Method Summary

    Modifier and Type
    Method
    Description
    Returns the enum constant of this class with the specified name.
    Returns an array containing the constants of this enum class, in the order they are declared.

    Methods inherited from class java.lang.Object

    getClass, notify, notifyAll, wait, wait, wait
  • Enum Constant Details

    • DISABLED

      public static final DefinitionQueueStatus DISABLED
      When disabled the definition queue will not allow builds to be queued by users and the system will not queue scheduled, gated or continuous integration builds. Builds already in the queue will not be started by the system.
    • ENABLED

      public static final DefinitionQueueStatus ENABLED
      When enabled the definition queue allows builds to be queued by users, the system will queue scheduled, gated and continuous integration builds, and the queued builds will be started by the system.
    • PAUSED

      public static final DefinitionQueueStatus PAUSED
      When paused the definition queue allows builds to be queued by users and the system will queue scheduled, gated and continuous integration builds. Builds in the queue will not be started by the system.
  • Method Details

    • values

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