Enum TaskTemplateFieldType
- java.lang.Object
-
- java.lang.Enum<TaskTemplateFieldType>
-
- software.amazon.awssdk.services.connect.model.TaskTemplateFieldType
-
- All Implemented Interfaces:
Serializable,Comparable<TaskTemplateFieldType>
@Generated("software.amazon.awssdk:codegen") public enum TaskTemplateFieldType extends Enum<TaskTemplateFieldType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BOOLEANDATE_TIMEDESCRIPTIONEMAILNAMENUMBERQUICK_CONNECTSCHEDULED_TIMESINGLE_SELECTTEXTTEXT_AREAUNKNOWN_TO_SDK_VERSIONURL
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static TaskTemplateFieldTypefromValue(String value)Use this in place of valueOf to convert the raw string returned by the service into the enum value.static Set<TaskTemplateFieldType>knownValues()StringtoString()static TaskTemplateFieldTypevalueOf(String name)Returns the enum constant of this type with the specified name.static TaskTemplateFieldType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NAME
public static final TaskTemplateFieldType NAME
-
DESCRIPTION
public static final TaskTemplateFieldType DESCRIPTION
-
SCHEDULED_TIME
public static final TaskTemplateFieldType SCHEDULED_TIME
-
QUICK_CONNECT
public static final TaskTemplateFieldType QUICK_CONNECT
-
URL
public static final TaskTemplateFieldType URL
-
NUMBER
public static final TaskTemplateFieldType NUMBER
-
TEXT
public static final TaskTemplateFieldType TEXT
-
TEXT_AREA
public static final TaskTemplateFieldType TEXT_AREA
-
DATE_TIME
public static final TaskTemplateFieldType DATE_TIME
-
BOOLEAN
public static final TaskTemplateFieldType BOOLEAN
-
SINGLE_SELECT
public static final TaskTemplateFieldType SINGLE_SELECT
-
EMAIL
public static final TaskTemplateFieldType EMAIL
-
UNKNOWN_TO_SDK_VERSION
public static final TaskTemplateFieldType UNKNOWN_TO_SDK_VERSION
-
-
Method Detail
-
values
public static TaskTemplateFieldType[] 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 (TaskTemplateFieldType c : TaskTemplateFieldType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TaskTemplateFieldType 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<TaskTemplateFieldType>
-
fromValue
public static TaskTemplateFieldType 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:
- TaskTemplateFieldType corresponding to the value
-
knownValues
public static Set<TaskTemplateFieldType> 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 knownTaskTemplateFieldTypes
-
-