Package org.azd.enums
Enum Class DeploymentReason
- All Implemented Interfaces:
Serializable
,Comparable<DeploymentReason>
,Constable
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.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionThe deployment reason is automated.The deployment reason is manual.The deployment reason is none.The deployment reason is RedeployTrigger.The deployment reason is scheduled. -
Method Summary
Modifier and TypeMethodDescriptionstatic DeploymentReason
Returns the enum constant of this class with the specified name.static DeploymentReason[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
AUTOMATED
The deployment reason is automated. -
MANUAL
The deployment reason is manual. -
NONE
The deployment reason is none. -
REDEPLOYTRIGGER
The deployment reason is RedeployTrigger. -
SCHEDULED
The deployment reason is scheduled.
-
-
Method Details
-
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
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 nameNullPointerException
- if the argument is null
-