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