Package org.dreambot.api.methods.emotes
Enum Emote
- java.lang.Object
-
- java.lang.Enum<Emote>
-
- org.dreambot.api.methods.emotes.Emote
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ANGRY
BECKON
BLOW_KISS
BOW
CHEER
CLAP
CLIMB_ROPE
CRY
DANCE
FLAP
FLEX
GLASS_BOX
GLASS_WALL
GOBLIN_BOW
GOBLIN_SALUTE
HEADBANG
IDEA
JIG
JUMP_FOR_JOY
LAUGH
LEAN
NO
PANIC
RABBIT_HOP
RASPBERRY
SALUTE
SCARED
SHRUG
SKILL_CAPE
SLAP_HEAD
SPIN
STAMP
THINK
WAVE
YAWN
YES
ZOMBIE_DANCE
ZOMBIE_WALK
-
Field Summary
Fields Modifier and Type Field Description int
childwidget
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Emote
forChildWidgetId(int id)
Gets the Emote based on WidgetChild IDstatic Emote
valueOf(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
-
ANGRY
public static final Emote ANGRY
-
BECKON
public static final Emote BECKON
-
BLOW_KISS
public static final Emote BLOW_KISS
-
BOW
public static final Emote BOW
-
CHEER
public static final Emote CHEER
-
CLAP
public static final Emote CLAP
-
CLIMB_ROPE
public static final Emote CLIMB_ROPE
-
CRY
public static final Emote CRY
-
DANCE
public static final Emote DANCE
-
FLAP
public static final Emote FLAP
-
GLASS_BOX
public static final Emote GLASS_BOX
-
GLASS_WALL
public static final Emote GLASS_WALL
-
GOBLIN_BOW
public static final Emote GOBLIN_BOW
-
GOBLIN_SALUTE
public static final Emote GOBLIN_SALUTE
-
HEADBANG
public static final Emote HEADBANG
-
IDEA
public static final Emote IDEA
-
JIG
public static final Emote JIG
-
JUMP_FOR_JOY
public static final Emote JUMP_FOR_JOY
-
LAUGH
public static final Emote LAUGH
-
LEAN
public static final Emote LEAN
-
NO
public static final Emote NO
-
PANIC
public static final Emote PANIC
-
RABBIT_HOP
public static final Emote RABBIT_HOP
-
RASPBERRY
public static final Emote RASPBERRY
-
SALUTE
public static final Emote SALUTE
-
SCARED
public static final Emote SCARED
-
SHRUG
public static final Emote SHRUG
-
SKILL_CAPE
public static final Emote SKILL_CAPE
-
SLAP_HEAD
public static final Emote SLAP_HEAD
-
SPIN
public static final Emote SPIN
-
STAMP
public static final Emote STAMP
-
THINK
public static final Emote THINK
-
WAVE
public static final Emote WAVE
-
YAWN
public static final Emote YAWN
-
YES
public static final Emote YES
-
ZOMBIE_DANCE
public static final Emote ZOMBIE_DANCE
-
ZOMBIE_WALK
public static final Emote ZOMBIE_WALK
-
FLEX
public static final Emote FLEX
-
-
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
-
forChildWidgetId
public static Emote forChildWidgetId(int id)
Gets the Emote based on WidgetChild ID- Parameters:
id
- WidgetChild ID- Returns:
- Emote that matches the ID
-
-