Enum ThievingAction
- java.lang.Object
-
- java.lang.Enum<ThievingAction>
-
- net.runelite.client.plugins.skillcalculator.skills.ThievingAction
-
- All Implemented Interfaces:
Serializable
,Comparable<ThievingAction>
,NamedSkillAction
,SkillAction
public enum ThievingAction extends Enum<ThievingAction> implements NamedSkillAction
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getIcon()
Gets the item icon ID for this skill action, if applicable.int
getLevel()
Gets the level required to perform this skill action.String
getName()
Gets the name of this skill action, usually the item or object created, or the spell cast.float
getXp()
Gets the amount of xp granted for performing this skill action.boolean
isMembers(ItemManager itemManager)
static ThievingAction
valueOf(String name)
Returns the enum constant of this type with the specified name.static ThievingAction[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.-
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
Methods inherited from interface net.runelite.client.plugins.skillcalculator.skills.NamedSkillAction
getName
-
Methods inherited from interface net.runelite.client.plugins.skillcalculator.skills.SkillAction
getExcludedSkillBonuses, getSprite, isBonusApplicable
-
-
-
-
Enum Constant Detail
-
MAN_OR_WOMAN
public static final ThievingAction MAN_OR_WOMAN
-
WINTER_SQIRKJUICE
public static final ThievingAction WINTER_SQIRKJUICE
-
VEGETABLE_STALL
public static final ThievingAction VEGETABLE_STALL
-
CAKE_STALL
public static final ThievingAction CAKE_STALL
-
MONKEY_FOOD_STALL
public static final ThievingAction MONKEY_FOOD_STALL
-
TEA_STALL
public static final ThievingAction TEA_STALL
-
CRAFTING_STALL
public static final ThievingAction CRAFTING_STALL
-
MONKEY_GENERAL_STALL
public static final ThievingAction MONKEY_GENERAL_STALL
-
FARMER
public static final ThievingAction FARMER
-
CHEST_10_COINS
public static final ThievingAction CHEST_10_COINS
-
HAM_MEMBER
public static final ThievingAction HAM_MEMBER
-
SILK_STALL
public static final ThievingAction SILK_STALL
-
WINE_STALL
public static final ThievingAction WINE_STALL
-
WARRIOR_WOMEN_OR_AL_KHARID_WARRIOR
public static final ThievingAction WARRIOR_WOMEN_OR_AL_KHARID_WARRIOR
-
FRUIT_STALL
public static final ThievingAction FRUIT_STALL
-
SPRING_SQIRKJUICE
public static final ThievingAction SPRING_SQIRKJUICE
-
SEED_STALL
public static final ThievingAction SEED_STALL
-
NATURE_RUNE_CHEST
public static final ThievingAction NATURE_RUNE_CHEST
-
ISLE_OF_SOULS_CHEST
public static final ThievingAction ISLE_OF_SOULS_CHEST
-
ROGUE
public static final ThievingAction ROGUE
-
FUR_STALL
public static final ThievingAction FUR_STALL
-
CAVE_GOBLIN
public static final ThievingAction CAVE_GOBLIN
-
MASTER_FARMER
public static final ThievingAction MASTER_FARMER
-
GUARD
public static final ThievingAction GUARD
-
FISH_STALL
public static final ThievingAction FISH_STALL
-
CHEST_50_COINS
public static final ThievingAction CHEST_50_COINS
-
BEARDED_POLLNIVNIAN_BANDIT
public static final ThievingAction BEARDED_POLLNIVNIAN_BANDIT
-
FREMENNIK_CITIZEN
public static final ThievingAction FREMENNIK_CITIZEN
-
AUTUMN_SQIRKJUICE
public static final ThievingAction AUTUMN_SQIRKJUICE
-
CHEST_STEEL_ARROWTIPS
public static final ThievingAction CHEST_STEEL_ARROWTIPS
-
CROSSBOW_STALL
public static final ThievingAction CROSSBOW_STALL
-
WALL_SAFE
public static final ThievingAction WALL_SAFE
-
WEALTHY_CITIZEN
public static final ThievingAction WEALTHY_CITIZEN
-
SILVER_STALL
public static final ThievingAction SILVER_STALL
-
DORGESH_KAAN_AVERAGE_CHEST
public static final ThievingAction DORGESH_KAAN_AVERAGE_CHEST
-
DESERT_BANDIT
public static final ThievingAction DESERT_BANDIT
-
KNIGHT
public static final ThievingAction KNIGHT
-
POLLNIVNIAN_BANDIT
public static final ThievingAction POLLNIVNIAN_BANDIT
-
STONE_CHEST
public static final ThievingAction STONE_CHEST
-
MAGIC_STALL
public static final ThievingAction MAGIC_STALL
-
SPICE_STALL
public static final ThievingAction SPICE_STALL
-
MENAPHITE_THUG
public static final ThievingAction MENAPHITE_THUG
-
YANILLE_WATCHMAN
public static final ThievingAction YANILLE_WATCHMAN
-
SCIMITAR_STALL
public static final ThievingAction SCIMITAR_STALL
-
SUMMER_SQIRKJUICE
public static final ThievingAction SUMMER_SQIRKJUICE
-
PALADIN
public static final ThievingAction PALADIN
-
GNOME
public static final ThievingAction GNOME
-
GEM_STALL
public static final ThievingAction GEM_STALL
-
DORGESH_KAAN_RICH_CHEST
public static final ThievingAction DORGESH_KAAN_RICH_CHEST
-
HERO
public static final ThievingAction HERO
-
VYRE
public static final ThievingAction VYRE
-
ORE_STALL
public static final ThievingAction ORE_STALL
-
ROGUES_CASTLE_CHEST
public static final ThievingAction ROGUES_CASTLE_CHEST
-
ELF
public static final ThievingAction ELF
-
TZHAAR_HUR
public static final ThievingAction TZHAAR_HUR
-
-
Method Detail
-
values
public static ThievingAction[] 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 (ThievingAction c : ThievingAction.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ThievingAction 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
-
isMembers
public boolean isMembers(ItemManager itemManager)
- Specified by:
isMembers
in interfaceSkillAction
-
getName
public String getName()
Description copied from interface:NamedSkillAction
Gets the name of this skill action, usually the item or object created, or the spell cast.- Specified by:
getName
in interfaceNamedSkillAction
- Returns:
- The name of this skill action.
-
getLevel
public int getLevel()
Description copied from interface:SkillAction
Gets the level required to perform this skill action.- Specified by:
getLevel
in interfaceSkillAction
- Returns:
- The level required to perform this skill action.
-
getXp
public float getXp()
Description copied from interface:SkillAction
Gets the amount of xp granted for performing this skill action.- Specified by:
getXp
in interfaceSkillAction
- Returns:
- The amount of xp granted for performing this skill action.
-
getIcon
public int getIcon()
Description copied from interface:SkillAction
Gets the item icon ID for this skill action, if applicable.Note: Either this method or
SkillAction.getSprite()
will always return-1
, and the other will return some value0
or greater.- Specified by:
getIcon
in interfaceSkillAction
- Returns:
- The item icon ID of this skill action, or
-1
if its icon should be represented using a sprite. - See Also:
ItemID
,SkillAction.getSprite()
-
-