Enum Emote
- java.lang.Object
-
- java.lang.Enum<Emote>
-
- net.runelite.client.plugins.cluescrolls.clues.emote.Emote
-
- All Implemented Interfaces:
Serializable
,Comparable<Emote>
public enum Emote extends Enum<Emote>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getName()
int
getSpriteId()
boolean
hasSprite()
static Emote
valueOf(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
-
BULL_ROARER
public static final Emote BULL_ROARER
-
YES
public static final Emote YES
-
NO
public static final Emote NO
-
THINK
public static final Emote THINK
-
BOW
public static final Emote BOW
-
ANGRY
public static final Emote ANGRY
-
CRY
public static final Emote CRY
-
LAUGH
public static final Emote LAUGH
-
CHEER
public static final Emote CHEER
-
WAVE
public static final Emote WAVE
-
BECKON
public static final Emote BECKON
-
DANCE
public static final Emote DANCE
-
CLAP
public static final Emote CLAP
-
PANIC
public static final Emote PANIC
-
JIG
public static final Emote JIG
-
SPIN
public static final Emote SPIN
-
HEADBANG
public static final Emote HEADBANG
-
JUMP_FOR_JOY
public static final Emote JUMP_FOR_JOY
-
RASPBERRY
public static final Emote RASPBERRY
-
YAWN
public static final Emote YAWN
-
SALUTE
public static final Emote SALUTE
-
SHRUG
public static final Emote SHRUG
-
BLOW_KISS
public static final Emote BLOW_KISS
-
GOBLIN_SALUTE
public static final Emote GOBLIN_SALUTE
-
SLAP_HEAD
public static final Emote SLAP_HEAD
-
STAMP
public static final Emote STAMP
-
FLAP
public static final Emote FLAP
-
PUSH_UP
public static final Emote PUSH_UP
-
FORTIS_SALUTE
public static final Emote FORTIS_SALUTE
-
-
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(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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
hasSprite
public boolean hasSprite()
-
getName
public String getName()
-
getSpriteId
public int getSpriteId()
-
-