public enum ChatMessageType extends java.lang.Enum<ChatMessageType>
Enum Constant and Description |
---|
comfortmessage
a automated message sent to a customer in the queue periodically; e.g.
|
normal
a user-generated message between two parties in a Chat which is visible to all parties.
|
welcomemessage
a welcome message for the customer who has entered a chat.
|
whisper
a message between two agents who are on a Consult.
|
Modifier and Type | Method and Description |
---|---|
static ChatMessageType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ChatMessageType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ChatMessageType welcomemessage
public static final ChatMessageType comfortmessage
public static final ChatMessageType whisper
public static final ChatMessageType normal
public static ChatMessageType[] values()
for (ChatMessageType c : ChatMessageType.values()) System.out.println(c);
public static ChatMessageType 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