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