Enum FishingAction
- java.lang.Object
-
- java.lang.Enum<FishingAction>
-
- net.runelite.client.plugins.skillcalculator.skills.FishingAction
-
- All Implemented Interfaces:
Serializable
,Comparable<FishingAction>
,ItemSkillAction
,SkillAction
public enum FishingAction extends Enum<FishingAction> implements ItemSkillAction
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getItemId()
Gets the item ID used for this action.int
getLevel()
Gets the level required to perform this skill action.float
getXp()
Gets the amount of xp granted for performing this skill action.static FishingAction
valueOf(String name)
Returns the enum constant of this type with the specified name.static FishingAction[]
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.ItemSkillAction
getIcon, getName, isMembers
-
Methods inherited from interface net.runelite.client.plugins.skillcalculator.skills.SkillAction
getExcludedSkillBonuses, getSprite, isBonusApplicable
-
-
-
-
Enum Constant Detail
-
RAW_SHRIMPS
public static final FishingAction RAW_SHRIMPS
-
RAW_KARAMBWANJI
public static final FishingAction RAW_KARAMBWANJI
-
RAW_SARDINE
public static final FishingAction RAW_SARDINE
-
RAW_GUPPY
public static final FishingAction RAW_GUPPY
-
RAW_HERRING
public static final FishingAction RAW_HERRING
-
RAW_ANCHOVIES
public static final FishingAction RAW_ANCHOVIES
-
RAW_MACKEREL
public static final FishingAction RAW_MACKEREL
-
RAW_CAVEFISH
public static final FishingAction RAW_CAVEFISH
-
RAW_BREAM
public static final FishingAction RAW_BREAM
-
RAW_TROUT
public static final FishingAction RAW_TROUT
-
RAW_COD
public static final FishingAction RAW_COD
-
RAW_PIKE
public static final FishingAction RAW_PIKE
-
RAW_SLIMY_EEL
public static final FishingAction RAW_SLIMY_EEL
-
RAW_SALMON
public static final FishingAction RAW_SALMON
-
RAW_TETRA
public static final FishingAction RAW_TETRA
-
RAW_TUNA
public static final FishingAction RAW_TUNA
-
RAW_CAVE_EEL
public static final FishingAction RAW_CAVE_EEL
-
RAW_RAINBOW_FISH
public static final FishingAction RAW_RAINBOW_FISH
-
RAW_LOBSTER
public static final FishingAction RAW_LOBSTER
-
RAW_CATFISH
public static final FishingAction RAW_CATFISH
-
RAW_BASS
public static final FishingAction RAW_BASS
-
LEAPING_TROUT
public static final FishingAction LEAPING_TROUT
-
RAW_SWORDFISH
public static final FishingAction RAW_SWORDFISH
-
LEAPING_SALMON
public static final FishingAction LEAPING_SALMON
-
RAW_MONKFISH
public static final FishingAction RAW_MONKFISH
-
RAW_KARAMBWAN
public static final FishingAction RAW_KARAMBWAN
-
LEAPING_STURGEON
public static final FishingAction LEAPING_STURGEON
-
RAW_SHARK
public static final FishingAction RAW_SHARK
-
RAW_SEA_TURTLE
public static final FishingAction RAW_SEA_TURTLE
-
INFERNAL_EEL
public static final FishingAction INFERNAL_EEL
-
RAW_MANTA_RAY
public static final FishingAction RAW_MANTA_RAY
-
MINNOW
public static final FishingAction MINNOW
-
RAW_ANGLERFISH
public static final FishingAction RAW_ANGLERFISH
-
RAW_DARK_CRAB
public static final FishingAction RAW_DARK_CRAB
-
SACRED_EEL
public static final FishingAction SACRED_EEL
-
-
Method Detail
-
values
public static FishingAction[] 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 (FishingAction c : FishingAction.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static FishingAction 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
-
getItemId
public int getItemId()
Description copied from interface:ItemSkillAction
Gets the item ID used for this action.- Specified by:
getItemId
in interfaceItemSkillAction
- Returns:
- The item ID used for this action.
- See Also:
ItemID
-
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.
-
-