public enum WebChatMethod extends java.lang.Enum<WebChatMethod>
Enum Constant and Description |
---|
activeAgentNotification |
agentJoinRoom |
customerDisconnect |
isTyping |
newMessage |
pagePush |
Modifier and Type | Method and Description |
---|---|
static WebChatMethod |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static WebChatMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WebChatMethod newMessage
public static final WebChatMethod isTyping
public static final WebChatMethod agentJoinRoom
public static final WebChatMethod customerDisconnect
public static final WebChatMethod activeAgentNotification
public static final WebChatMethod pagePush
public static WebChatMethod[] values()
for (WebChatMethod c : WebChatMethod.values()) System.out.println(c);
public static WebChatMethod 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