Package org.azd.enums

Enum Class DeployPhaseStatus

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

public enum DeployPhaseStatus extends Enum<DeployPhaseStatus>
Gets status.
  • Enum Constant Details

    • CANCELED

      public static final DeployPhaseStatus CANCELED
      Phase execution canceled.
    • CANCELLING

      public static final DeployPhaseStatus CANCELLING
      Phase is in cancelling state.
    • FAILED

      public static final DeployPhaseStatus FAILED
      Phase execution failed.
    • INPROGRESS

      public static final DeployPhaseStatus INPROGRESS
      Phase execution in progress.
    • NOTSTARTED

      public static final DeployPhaseStatus NOTSTARTED
      Phase execution not started.
    • PARTIALLYSUCCEEDED

      public static final DeployPhaseStatus PARTIALLYSUCCEEDED
      Phase execution partially succeeded.
    • SKIPPED

      public static final DeployPhaseStatus SKIPPED
      Phase execution skipped.
    • SUCCEEDED

      public static final DeployPhaseStatus SUCCEEDED
      Phase execution succeeded.
    • UNDEFINED

      public static final DeployPhaseStatus UNDEFINED
      Phase status not set.
  • Method Details

    • values

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