Package rs.kreme.ksbot.api.game.data
Enum Emote
- java.lang.Object
-
- java.lang.Enum<Emote>
-
- rs.kreme.ksbot.api.game.data.Emote
-
-
Enum Constant Summary
-
Field Summary
Fields Modifier and Type Field Description static intEMOTES_WIDGET_ID
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static EmotevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static Emote[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
YES
public static final Emote YES
-
NO
public static final Emote NO
-
BOW
public static final Emote BOW
-
ANGRY
public static final Emote ANGRY
-
THINK
public static final Emote THINK
-
WAVE
public static final Emote WAVE
-
SHRUG
public static final Emote SHRUG
-
CHEER
public static final Emote CHEER
-
BECKON
public static final Emote BECKON
-
LAUGH
public static final Emote LAUGH
-
JUMP_FOR_JOY
public static final Emote JUMP_FOR_JOY
-
YAWN
public static final Emote YAWN
-
DANCE
public static final Emote DANCE
-
JIG
public static final Emote JIG
-
SPIN
public static final Emote SPIN
-
HEADBANG
public static final Emote HEADBANG
-
CRY
public static final Emote CRY
-
BLOW_KISS
public static final Emote BLOW_KISS
-
PANIC
public static final Emote PANIC
-
RASPBERRY
public static final Emote RASPBERRY
-
CLAP
public static final Emote CLAP
-
SALUTE
public static final Emote SALUTE
-
GOBLIN_BOW
public static final Emote GOBLIN_BOW
-
GOBLIN_SALUTE
public static final Emote GOBLIN_SALUTE
-
GLASS_BOX
public static final Emote GLASS_BOX
-
CLIMB_ROPE
public static final Emote CLIMB_ROPE
-
LEAN
public static final Emote LEAN
-
GLASS_WALL
public static final Emote GLASS_WALL
-
IDEA
public static final Emote IDEA
-
STOMP
public static final Emote STOMP
-
FLAP
public static final Emote FLAP
-
SLAP_HEAD
public static final Emote SLAP_HEAD
-
ZOMBIE_WALK
public static final Emote ZOMBIE_WALK
-
ZOMBIE_DANCE
public static final Emote ZOMBIE_DANCE
-
SCARED
public static final Emote SCARED
-
RABBIT_HOP
public static final Emote RABBIT_HOP
-
SIT_UP
public static final Emote SIT_UP
-
PUSH_UP
public static final Emote PUSH_UP
-
STAR_JUMP
public static final Emote STAR_JUMP
-
JOG
public static final Emote JOG
-
FLEX
public static final Emote FLEX
-
ZOMBIE_HAND
public static final Emote ZOMBIE_HAND
-
HYPERMOBILE_DRINKER
public static final Emote HYPERMOBILE_DRINKER
-
SKILLCAPE
public static final Emote SKILLCAPE
-
AIR_GUITAR
public static final Emote AIR_GUITAR
-
URI_TRANSFORM
public static final Emote URI_TRANSFORM
-
SMOOTH_DANCE
public static final Emote SMOOTH_DANCE
-
CRAZY_DANCE
public static final Emote CRAZY_DANCE
-
PREMIER_SHIELD
public static final Emote PREMIER_SHIELD
-
EXPLORE
public static final Emote EXPLORE
-
RELIC_UNLOCK
public static final Emote RELIC_UNLOCK
-
PARTY
public static final Emote PARTY
-
TRICK
public static final Emote TRICK
-
FORTIS_SALUTE
public static final Emote FORTIS_SALUTE
-
-
Field Detail
-
EMOTES_WIDGET_ID
public static final int EMOTES_WIDGET_ID
- See Also:
- Constant Field Values
-
-
Method Detail
-
values
public static Emote[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (Emote c : Emote.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Emote valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-