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