Package org.azd.enums

Enum Class EnvironmentStatus

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

public enum EnvironmentStatus extends Enum<EnvironmentStatus>
Status of release task.
  • Enum Constant Details

    • CANCELED

      public static final EnvironmentStatus CANCELED
      Environment is in canceled state.
    • INPROGRESS

      public static final EnvironmentStatus INPROGRESS
      Environment is in progress state.
    • NOTSTARTED

      public static final EnvironmentStatus NOTSTARTED
      Environment is in not started state.
    • PARTIALLYSUCCEEDED

      public static final EnvironmentStatus PARTIALLYSUCCEEDED
      Environment is in partially succeeded state.
    • QUEUED

      public static final EnvironmentStatus QUEUED
      Environment is in queued state.
    • REJECTED

      public static final EnvironmentStatus REJECTED
      Environment is in rejected state.
    • SCHEDULED

      public static final EnvironmentStatus SCHEDULED
      Environment is in scheduled state.
    • SUCCEEDED

      public static final EnvironmentStatus SUCCEEDED
      Environment is in succeeded state.
    • UNDEFINED

      public static final EnvironmentStatus UNDEFINED
      Environment status not set.
  • Method Details

    • values

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