public enum ChatEventType extends java.lang.Enum<ChatEventType>
Enum Constant and Description |
---|
JOINED
The event represents the event raised when this StreamLink client joins a chat channel.
|
MESSAGE
The event contains a chat message
|
USER_ADDED
The event represents the event raised when a user joins a chat channel.
|
USER_REMOVED
The event represents the event raised when a user leaves a chat channel.
|
Modifier and Type | Method and Description |
---|---|
static ChatEventType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ChatEventType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ChatEventType MESSAGE
The event contains a chat message
public static final ChatEventType USER_ADDED
The event represents the event raised when a user joins a chat channel.
public static final ChatEventType USER_REMOVED
The event represents the event raised when a user leaves a chat channel.
public static final ChatEventType JOINED
The event represents the event raised when this StreamLink client joins a chat channel.
public static ChatEventType[] values()
for (ChatEventType c : ChatEventType.values()) System.out.println(c);
public static ChatEventType 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 nullPlease send bug reports and comments to Caplin support