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