Enum-Klasse Emote.Type

java.lang.Object
java.lang.Enum<Emote.Type>
com.github.twitch4j.helix.domain.Emote.Type
Alle implementierten Schnittstellen:
Serializable, Comparable<Emote.Type>, Constable
Umschließende Klasse:
Emote

public static enum Emote.Type extends Enum<Emote.Type>
  • Enum-Konstanten - Details

    • ARCHIVE

      @Unofficial public static final Emote.Type ARCHIVE
      Indicates a library-archived emote.
    • BITS_TIER

      public static final Emote.Type BITS_TIER
      Indicates a custom Bits tier emote.
    • CHANNEL_POINTS

      public static final Emote.Type CHANNEL_POINTS
      Indicates a channel points reward emote.
    • FOLLOWER

      public static final Emote.Type FOLLOWER
      Indicates a custom follower emote. Note: subscribers can utilize follower emotes in any channel.
    • GLOBALS

      public static final Emote.Type GLOBALS
      Indicates a global emote.
    • HYPE_TRAIN

      public static final Emote.Type HYPE_TRAIN
      Indicates a hype train emote.
    • LIMITED_TIME

      public static final Emote.Type LIMITED_TIME
      Indicates a limited time emote.
    • NONE

      public static final Emote.Type NONE
      No emote type was assigned to this emote.
    • PRIME

      public static final Emote.Type PRIME
      Indicates a prime or turbo emote.
    • REWARDS

      public static final Emote.Type REWARDS
      Indicates a rewards emote.
    • SMILIES

      public static final Emote.Type SMILIES
      Indicates a smiley emote.
    • SUBSCRIPTIONS

      public static final Emote.Type SUBSCRIPTIONS
      Indicates a custom subscriber emote.
    • TWO_FACTOR

      public static final Emote.Type TWO_FACTOR
      Indicates a two-factor emote.
    • OTHER

      public static final Emote.Type OTHER
      The channel emote type was unknown; please report on our Discord or Github!
  • Methodendetails

    • values

      public static Emote.Type[] values()
      Gibt ein Array mit den Konstanten dieser Enum-Klasse in der Reihenfolge ihrer Deklaration zurück.
      Gibt zurück:
      ein Array mit den Konstanten dieser Enum-Klasse in der Reihenfolge ihrer Deklaration
    • valueOf

      public static Emote.Type valueOf(String name)
      Gibt die Enum-Konstante dieser Klasse mit dem angegebenen Namen zurück. Die Zeichenfolge muss exakt mit einer ID übereinstimmen, mit der eine Enum-Konstante in dieser Klasse deklariert wird. (Zusätzliche Leerzeichen sind nicht zulässig.)
      Parameter:
      name - Name der zurückzugebenden Enumerationskonstante.
      Gibt zurück:
      Enumerationskonstante mit dem angegebenen Namen
      Löst aus:
      IllegalArgumentException - wenn diese Enum-Klasse keine Konstante mit dem angegebenen Namen enthält
      NullPointerException - wenn das Argument nicht angegeben wird
    • parseEmoteType

      @NonNull public static @NonNull Emote.Type parseEmoteType(String emoteType)