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