Enum Class ChatEventType

java.lang.Object
java.lang.Enum<ChatEventType>
com.caplin.streamlink.ChatEventType
All Implemented Interfaces:
Serializable, Comparable<ChatEventType>, Constable

public enum ChatEventType extends Enum<ChatEventType>

Enumeration that defines the type of the ChatEvent.

The ChatEventType can be obtained by calling getUpdateType() on a ChatEvent.

  • Enum Constant Details

    • MESSAGE

      public static final ChatEventType MESSAGE

      The event contains a chat message

    • USER_ADDED

      public static final ChatEventType USER_ADDED

      The event represents the event raised when a user joins a chat channel.

    • USER_REMOVED

      public static final ChatEventType USER_REMOVED

      The event represents the event raised when a user leaves a chat channel.

    • JOINED

      public static final ChatEventType JOINED

      The event represents the event raised when this StreamLink client joins a chat channel.

  • Method Details

    • values

      public static ChatEventType[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static ChatEventType valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null