Package com.epicbot.api.shared.model
Enum SkullIcon
- java.lang.Object
-
- java.lang.Enum<SkullIcon>
-
- com.epicbot.api.shared.model.SkullIcon
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DEAD_MAN_FIVE
Deadman mode sprite carrying five keysDEAD_MAN_FOUR
Deadman mode sprite carrying four keysDEAD_MAN_ONE
Deadman mode sprite carrying one keyDEAD_MAN_THREE
Deadman mode sprite carrying three keysDEAD_MAN_TWO
Deadman mode sprite carrying two keysSKULL
White skull from PVP world or wildernessSKULL_FIGHT_PIT
Red skull from Tzhaar Fight Pits
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SkullIcon
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static SkullIcon[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SKULL
public static final SkullIcon SKULL
White skull from PVP world or wilderness
-
SKULL_FIGHT_PIT
public static final SkullIcon SKULL_FIGHT_PIT
Red skull from Tzhaar Fight Pits
-
DEAD_MAN_ONE
public static final SkullIcon DEAD_MAN_ONE
Deadman mode sprite carrying one key
-
DEAD_MAN_TWO
public static final SkullIcon DEAD_MAN_TWO
Deadman mode sprite carrying two keys
-
DEAD_MAN_THREE
public static final SkullIcon DEAD_MAN_THREE
Deadman mode sprite carrying three keys
-
DEAD_MAN_FOUR
public static final SkullIcon DEAD_MAN_FOUR
Deadman mode sprite carrying four keys
-
DEAD_MAN_FIVE
public static final SkullIcon DEAD_MAN_FIVE
Deadman mode sprite carrying five keys
-
-
Method Detail
-
values
public static SkullIcon[] 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 (SkullIcon c : SkullIcon.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SkullIcon 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
-
-