Enum FishingBonus
- java.lang.Object
-
- java.lang.Enum<FishingBonus>
-
- net.runelite.client.plugins.skillcalculator.skills.FishingBonus
-
- All Implemented Interfaces:
Serializable,Comparable<FishingBonus>,SkillBonus
public enum FishingBonus extends Enum<FishingBonus> implements SkillBonus
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ANGLERS_OUTFITDIABOLIC_WORMSSHARK_LURE_1SHARK_LURE_3SHARK_LURE_5
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description Set<FishingBonus>getCanBeStackedWith()Gets the list of skill bonuses this skill bonus can be stacked with.StringgetName()Gets the name of this skill bonus.floatgetValue()Gets the multiplier for this skill bonus.static FishingBonusvalueOf(String name)Returns the enum constant of this type with the specified name.static FishingBonus[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ANGLERS_OUTFIT
public static final FishingBonus ANGLERS_OUTFIT
-
DIABOLIC_WORMS
public static final FishingBonus DIABOLIC_WORMS
-
SHARK_LURE_1
public static final FishingBonus SHARK_LURE_1
-
SHARK_LURE_3
public static final FishingBonus SHARK_LURE_3
-
SHARK_LURE_5
public static final FishingBonus SHARK_LURE_5
-
-
Method Detail
-
values
public static FishingBonus[] 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 (FishingBonus c : FishingBonus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static FishingBonus 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
-
getCanBeStackedWith
public Set<FishingBonus> getCanBeStackedWith()
Description copied from interface:SkillBonusGets the list of skill bonuses this skill bonus can be stacked with.- Specified by:
getCanBeStackedWithin interfaceSkillBonus- Returns:
- List of stackable skill bonuses
-
getName
public String getName()
Description copied from interface:SkillBonusGets the name of this skill bonus.- Specified by:
getNamein interfaceSkillBonus- Returns:
- The name of this skill bonus.
-
getValue
public float getValue()
Description copied from interface:SkillBonusGets the multiplier for this skill bonus. When multiplied with the skill action XP value, it yields the total amount of xp granted for that action. (eg.{@link SkillAction#getXp()} * {@link #getValue()}yields the full amount of xp gained)- Specified by:
getValuein interfaceSkillBonus- Returns:
- The skill bonus multiplier.
-
-