Enum SkullIcon
- java.lang.Object
-
- java.lang.Enum<SkullIcon>
-
- com.osrsbots.orb.api.interactables.combat.SkullIcon
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static @Nullable SkullIconvalueOf(int skullType)Returns the enum constant of this type with the specified name.static SkullIconvalueOf(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_FIGHT_PIT
public static final SkullIcon SKULL_FIGHT_PIT
-
SKULL_HIGH_RISK
public static final SkullIcon SKULL_HIGH_RISK
-
FORINTHRY_SURGE
public static final SkullIcon FORINTHRY_SURGE
-
SKULL_DEADMAN
public static final SkullIcon SKULL_DEADMAN
-
LOOT_KEYS_ONE
public static final SkullIcon LOOT_KEYS_ONE
-
LOOT_KEYS_TWO
public static final SkullIcon LOOT_KEYS_TWO
-
LOOT_KEYS_THREE
public static final SkullIcon LOOT_KEYS_THREE
-
LOOT_KEYS_FOUR
public static final SkullIcon LOOT_KEYS_FOUR
-
LOOT_KEYS_FIVE
public static final SkullIcon LOOT_KEYS_FIVE
-
FORINTHRY_SURGE_DEADMAN
public static final SkullIcon FORINTHRY_SURGE_DEADMAN
-
FORINTHRY_SURGE_KEYS_ONE
public static final SkullIcon FORINTHRY_SURGE_KEYS_ONE
-
FORINTHRY_SURGE_KEYS_TWO
public static final SkullIcon FORINTHRY_SURGE_KEYS_TWO
-
FORINTHRY_SURGE_KEYS_THREE
public static final SkullIcon FORINTHRY_SURGE_KEYS_THREE
-
FORINTHRY_SURGE_KEYS_FOUR
public static final SkullIcon FORINTHRY_SURGE_KEYS_FOUR
-
FORINTHRY_SURGE_KEYS_FIVE
public static final SkullIcon FORINTHRY_SURGE_KEYS_FIVE
-
-
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
-
valueOf
@Nullable public static @Nullable SkullIcon valueOf(int skullType)
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:
skullType- 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
-
-