Enum CodegenGenericDataFieldDataType
- java.lang.Object
-
- java.lang.Enum<CodegenGenericDataFieldDataType>
-
- software.amazon.awssdk.services.amplifyuibuilder.model.CodegenGenericDataFieldDataType
-
- All Implemented Interfaces:
Serializable,Comparable<CodegenGenericDataFieldDataType>
@Generated("software.amazon.awssdk:codegen") public enum CodegenGenericDataFieldDataType extends Enum<CodegenGenericDataFieldDataType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AWS_DATEAWS_DATE_TIMEAWS_EMAILAWS_PHONEAWS_TIMEAWS_TIMESTAMPAWSIP_ADDRESSAWSJSONAWSURLBOOLEANENUMFLOATIDINTMODELNON_MODELSTRINGUNKNOWN_TO_SDK_VERSION
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static CodegenGenericDataFieldDataTypefromValue(String value)Use this in place of valueOf to convert the raw string returned by the service into the enum value.static Set<CodegenGenericDataFieldDataType>knownValues()StringtoString()static CodegenGenericDataFieldDataTypevalueOf(String name)Returns the enum constant of this type with the specified name.static CodegenGenericDataFieldDataType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ID
public static final CodegenGenericDataFieldDataType ID
-
STRING
public static final CodegenGenericDataFieldDataType STRING
-
INT
public static final CodegenGenericDataFieldDataType INT
-
FLOAT
public static final CodegenGenericDataFieldDataType FLOAT
-
AWS_DATE
public static final CodegenGenericDataFieldDataType AWS_DATE
-
AWS_TIME
public static final CodegenGenericDataFieldDataType AWS_TIME
-
AWS_DATE_TIME
public static final CodegenGenericDataFieldDataType AWS_DATE_TIME
-
AWS_TIMESTAMP
public static final CodegenGenericDataFieldDataType AWS_TIMESTAMP
-
AWS_EMAIL
public static final CodegenGenericDataFieldDataType AWS_EMAIL
-
AWSURL
public static final CodegenGenericDataFieldDataType AWSURL
-
AWSIP_ADDRESS
public static final CodegenGenericDataFieldDataType AWSIP_ADDRESS
-
BOOLEAN
public static final CodegenGenericDataFieldDataType BOOLEAN
-
AWSJSON
public static final CodegenGenericDataFieldDataType AWSJSON
-
AWS_PHONE
public static final CodegenGenericDataFieldDataType AWS_PHONE
-
ENUM
public static final CodegenGenericDataFieldDataType ENUM
-
MODEL
public static final CodegenGenericDataFieldDataType MODEL
-
NON_MODEL
public static final CodegenGenericDataFieldDataType NON_MODEL
-
UNKNOWN_TO_SDK_VERSION
public static final CodegenGenericDataFieldDataType UNKNOWN_TO_SDK_VERSION
-
-
Method Detail
-
values
public static CodegenGenericDataFieldDataType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (CodegenGenericDataFieldDataType c : CodegenGenericDataFieldDataType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CodegenGenericDataFieldDataType valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
toString
public String toString()
- Overrides:
toStringin classEnum<CodegenGenericDataFieldDataType>
-
fromValue
public static CodegenGenericDataFieldDataType fromValue(String value)
Use this in place of valueOf to convert the raw string returned by the service into the enum value.- Parameters:
value- real value- Returns:
- CodegenGenericDataFieldDataType corresponding to the value
-
knownValues
public static Set<CodegenGenericDataFieldDataType> knownValues()
Use this in place ofvalues()to return aSetof all values known to the SDK. This will return all known enum values exceptUNKNOWN_TO_SDK_VERSION.- Returns:
- a
Setof knownCodegenGenericDataFieldDataTypes
-
-