public enum ConversationType extends java.lang.Enum<ConversationType>
Enum Constant and Description |
---|
AUDIO_REQUEST
Audio call request.
|
CHAT_REQUEST
Normal chat request
|
MOBILE_COBROWSING_REQUEST
Mobile cobrowsing request.
|
OFFLINE_CHAT_REQUEST
Chat request while no agent is available
|
VIDEO_REQUEST
Video call request.
|
Modifier and Type | Method and Description |
---|---|
static ConversationType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ConversationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConversationType CHAT_REQUEST
public static final ConversationType OFFLINE_CHAT_REQUEST
public static final ConversationType VIDEO_REQUEST
public static final ConversationType AUDIO_REQUEST
public static final ConversationType MOBILE_COBROWSING_REQUEST
public static ConversationType[] values()
for (ConversationType c : ConversationType.values()) System.out.println(c);
public static ConversationType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null