Package org.azd.enums
Enum Class ReleaseEnvironmentStatus
- All Implemented Interfaces:
Serializable
,Comparable<ReleaseEnvironmentStatus>
,Constable
Release environment status.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionEnvironment is in canceled state.Environment is in progress state.Environment is in not started state.Environment is in partially succeeded state.Environment is in queued state.Environment is in rejected state.Environment is in scheduled state.Environment is in succeeded state.Environment status not set. -
Method Summary
Modifier and TypeMethodDescriptionstatic ReleaseEnvironmentStatus
Returns the enum constant of this class with the specified name.static ReleaseEnvironmentStatus[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
CANCELED
Environment is in canceled state. -
INPROGRESS
Environment is in progress state. -
NOTSTARTED
Environment is in not started state. -
PARTIALLYSUCCEEDED
Environment is in partially succeeded state. -
QUEUED
Environment is in queued state. -
REJECTED
Environment is in rejected state. -
SCHEDULED
Environment is in scheduled state. -
SUCCEEDED
Environment is in succeeded state. -
UNDEFINED
Environment status not set.
-
-
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
-