@Generated(value="com.amazonaws:aws-java-sdk-code-generator") public enum StepRunStatus extends Enum<StepRunStatus>
| Modifier and Type | Method and Description |
|---|---|
static StepRunStatus |
fromValue(String value)
Use this in place of valueOf.
|
String |
toString() |
static StepRunStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StepRunStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StepRunStatus Success
public static final StepRunStatus Failed
public static final StepRunStatus Running
public static StepRunStatus[] values()
for (StepRunStatus c : StepRunStatus.values()) System.out.println(c);
public static StepRunStatus 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<StepRunStatus>public static StepRunStatus fromValue(String value)
value - real valueIllegalArgumentException - If the specified value does not map to one of the known values in this enum.