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