Package com.oracle.bmc.devops.model
Enum DeployStageExecutionProgress.Status
- java.lang.Object
-
- java.lang.Enum<DeployStageExecutionProgress.Status>
-
- com.oracle.bmc.devops.model.DeployStageExecutionProgress.Status
-
- All Implemented Interfaces:
BmcEnum
,Serializable
,Comparable<DeployStageExecutionProgress.Status>
- Enclosing class:
- DeployStageExecutionProgress
public static enum DeployStageExecutionProgress.Status extends Enum<DeployStageExecutionProgress.Status> implements BmcEnum
The current state of the stage.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description Accepted
Canceled
Canceling
Failed
InProgress
RollbackFailed
RollbackInProgress
RollbackSucceeded
Succeeded
UnknownEnumValue
This value is used if a service returns a value for this enum that is not recognized by this version of the SDK.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static DeployStageExecutionProgress.Status
create(String key)
String
getValue()
static DeployStageExecutionProgress.Status
valueOf(String name)
Returns the enum constant of this type with the specified name.static DeployStageExecutionProgress.Status[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Accepted
public static final DeployStageExecutionProgress.Status Accepted
-
InProgress
public static final DeployStageExecutionProgress.Status InProgress
-
Failed
public static final DeployStageExecutionProgress.Status Failed
-
Succeeded
public static final DeployStageExecutionProgress.Status Succeeded
-
Canceling
public static final DeployStageExecutionProgress.Status Canceling
-
Canceled
public static final DeployStageExecutionProgress.Status Canceled
-
RollbackInProgress
public static final DeployStageExecutionProgress.Status RollbackInProgress
-
RollbackSucceeded
public static final DeployStageExecutionProgress.Status RollbackSucceeded
-
RollbackFailed
public static final DeployStageExecutionProgress.Status RollbackFailed
-
UnknownEnumValue
public static final DeployStageExecutionProgress.Status UnknownEnumValue
This value is used if a service returns a value for this enum that is not recognized by this version of the SDK.
-
-
Method Detail
-
values
public static DeployStageExecutionProgress.Status[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (DeployStageExecutionProgress.Status c : DeployStageExecutionProgress.Status.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DeployStageExecutionProgress.Status valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified nameNullPointerException
- if the argument is null
-
create
public static DeployStageExecutionProgress.Status create(String key)
-
-