Package org.azd.enums

Enum Class BuildStatus

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

public enum BuildStatus extends Enum<BuildStatus>
The status of the controller.
  • Enum Constant Details

    • ALL

      public static final BuildStatus ALL
      All status.
    • CANCELLING

      public static final BuildStatus CANCELLING
      The build is cancelling
    • COMPLETED

      public static final BuildStatus COMPLETED
      The build has completed.
    • INPROGRESS

      public static final BuildStatus INPROGRESS
      The build is currently in progress.
    • NONE

      public static final BuildStatus NONE
      No status.
    • NOTSTARTED

      public static final BuildStatus NOTSTARTED
      The build has not yet started.
    • POSTPONED

      public static final BuildStatus POSTPONED
      The build is inactive in the queue.
  • Method Details

    • values

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