@Generated(value="com.amazonaws:aws-java-sdk-code-generator") public enum StageExecutionStatus extends Enum<StageExecutionStatus>
Enum Constant and Description |
---|
Cancelled |
Failed |
InProgress |
Stopped |
Stopping |
Succeeded |
Modifier and Type | Method and Description |
---|---|
static StageExecutionStatus |
fromValue(String value)
Use this in place of valueOf.
|
String |
toString() |
static StageExecutionStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StageExecutionStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StageExecutionStatus Cancelled
public static final StageExecutionStatus InProgress
public static final StageExecutionStatus Failed
public static final StageExecutionStatus Stopped
public static final StageExecutionStatus Stopping
public static final StageExecutionStatus Succeeded
public static StageExecutionStatus[] values()
for (StageExecutionStatus c : StageExecutionStatus.values()) System.out.println(c);
public static StageExecutionStatus valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic String toString()
toString
in class Enum<StageExecutionStatus>
public static StageExecutionStatus fromValue(String value)
value
- real valueIllegalArgumentException
- If the specified value does not map to one of the known values in this enum.