public enum ChatMessageType extends java.lang.Enum<ChatMessageType>
| Enum Constant and Description |
|---|
CHAT_EVENT
chat Event
|
MESSAGE
message
|
TYPING
typing
|
UNEXPECTED_VALUE
For ChatMessageType values that were not expected from the service
|
UNKNOWN_FUTURE_VALUE
unknown Future Value
|
| 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 MESSAGE
public static final ChatMessageType CHAT_EVENT
public static final ChatMessageType TYPING
public static final ChatMessageType UNKNOWN_FUTURE_VALUE
public static final ChatMessageType UNEXPECTED_VALUE
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