@Generated(value="com.amazonaws:aws-java-sdk-code-generator") public enum PipeState extends Enum<PipeState>
Enum Constant and Description |
---|
CREATE_FAILED |
CREATE_ROLLBACK_FAILED |
CREATING |
DELETE_FAILED |
DELETE_ROLLBACK_FAILED |
DELETING |
RUNNING |
START_FAILED |
STARTING |
STOP_FAILED |
STOPPED |
STOPPING |
UPDATE_FAILED |
UPDATE_ROLLBACK_FAILED |
UPDATING |
Modifier and Type | Method and Description |
---|---|
static PipeState |
fromValue(String value)
Use this in place of valueOf.
|
String |
toString() |
static PipeState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PipeState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PipeState RUNNING
public static final PipeState STOPPED
public static final PipeState CREATING
public static final PipeState UPDATING
public static final PipeState DELETING
public static final PipeState STARTING
public static final PipeState STOPPING
public static final PipeState CREATE_FAILED
public static final PipeState UPDATE_FAILED
public static final PipeState START_FAILED
public static final PipeState STOP_FAILED
public static final PipeState DELETE_FAILED
public static final PipeState CREATE_ROLLBACK_FAILED
public static final PipeState DELETE_ROLLBACK_FAILED
public static final PipeState UPDATE_ROLLBACK_FAILED
public static PipeState[] values()
for (PipeState c : PipeState.values()) System.out.println(c);
public static PipeState 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 static PipeState fromValue(String value)
value
- real valueIllegalArgumentException
- If the specified value does not map to one of the known values in this enum.