Package com.github.twitch4j.helix.domain
Enum Class Emote.Type
- All Implemented Interfaces:
Serializable
,Comparable<Emote.Type>
,Constable
- Enclosing class:
- Emote
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionIndicates a library-archived emote.Indicates a custom Bits tier emote.Indicates a channel points reward emote.Indicates a custom follower emote.Indicates a global emote.Indicates a hype train emote.Indicates a limited time emote.No emote type was assigned to this emote.The channel emote type was unknown; please report on our Discord or Github!Indicates a prime or turbo emote.Indicates a rewards emote.Indicates a smiley emote.Indicates a custom subscriber emote.Indicates a two-factor emote. -
Method Summary
Modifier and TypeMethodDescriptionstatic @NonNull Emote.Type
parseEmoteType
(String emoteType) static Emote.Type
Returns the enum constant of this class with the specified name.static Emote.Type[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
ARCHIVE
Indicates a library-archived emote. -
BITS_TIER
Indicates a custom Bits tier emote. -
CHANNEL_POINTS
Indicates a channel points reward emote. -
FOLLOWER
Indicates a custom follower emote. Note: subscribers can utilize follower emotes in any channel. -
GLOBALS
Indicates a global emote. -
HYPE_TRAIN
Indicates a hype train emote. -
LIMITED_TIME
Indicates a limited time emote. -
NONE
No emote type was assigned to this emote. -
PRIME
Indicates a prime or turbo emote. -
REWARDS
Indicates a rewards emote. -
SMILIES
Indicates a smiley emote. -
SUBSCRIPTIONS
Indicates a custom subscriber emote. -
TWO_FACTOR
Indicates a two-factor emote. -
OTHER
The channel emote type was unknown; please report on our Discord or Github!
-
-
Method Details
-
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
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 nameNullPointerException
- if the argument is null
-
parseEmoteType
-