Package org.azd.enums

Enum Class DeploymentReason

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

public enum DeploymentReason extends Enum<DeploymentReason>
The class represents a property bag as a collection of key-value pairs. Values of all primitive types (any type with a TypeCode != TypeCode.Object) except for DBNull are accepted. Values of type Byte[], Int32, Double, DateType and String preserve their type, other primitives are retuned as a String. Byte[] expected as base64 encoded string.
  • Enum Constant Details

    • AUTOMATED

      public static final DeploymentReason AUTOMATED
      The deployment reason is automated.
    • MANUAL

      public static final DeploymentReason MANUAL
      The deployment reason is manual.
    • NONE

      public static final DeploymentReason NONE
      The deployment reason is none.
    • REDEPLOYTRIGGER

      public static final DeploymentReason REDEPLOYTRIGGER
      The deployment reason is RedeployTrigger.
    • SCHEDULED

      public static final DeploymentReason SCHEDULED
      The deployment reason is scheduled.
  • Method Details

    • values

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