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