Package net.runelite.client.game
Enum FishingSpot
- java.lang.Object
-
- java.lang.Enum<FishingSpot>
-
- net.runelite.client.game.FishingSpot
-
- All Implemented Interfaces:
Serializable
,Comparable<FishingSpot>
public enum FishingSpot extends Enum<FishingSpot>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static FishingSpot
findSpot(int id)
int
getFishSpriteId()
int[]
getIds()
String
getName()
String
getWorldMapTooltip()
static FishingSpot
valueOf(String name)
Returns the enum constant of this type with the specified name.static FishingSpot[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SHRIMP
public static final FishingSpot SHRIMP
-
LOBSTER
public static final FishingSpot LOBSTER
-
SHARK
public static final FishingSpot SHARK
-
MONKFISH
public static final FishingSpot MONKFISH
-
SALMON
public static final FishingSpot SALMON
-
LAVA_EEL
public static final FishingSpot LAVA_EEL
-
BARB_FISH
public static final FishingSpot BARB_FISH
-
ANGLERFISH
public static final FishingSpot ANGLERFISH
-
MINNOW
public static final FishingSpot MINNOW
-
HARPOONFISH
public static final FishingSpot HARPOONFISH
-
INFERNAL_EEL
public static final FishingSpot INFERNAL_EEL
-
KARAMBWAN
public static final FishingSpot KARAMBWAN
-
KARAMBWANJI
public static final FishingSpot KARAMBWANJI
-
SACRED_EEL
public static final FishingSpot SACRED_EEL
-
CAVE_EEL
public static final FishingSpot CAVE_EEL
-
SLIMY_EEL
public static final FishingSpot SLIMY_EEL
-
DARK_CRAB
public static final FishingSpot DARK_CRAB
-
COMMON_TENCH
public static final FishingSpot COMMON_TENCH
-
CAMDOZAAL_TETRA
public static final FishingSpot CAMDOZAAL_TETRA
-
CAMDOZAAL_CAVE_EEL
public static final FishingSpot CAMDOZAAL_CAVE_EEL
-
TUTORIAL_SHRIMP
public static final FishingSpot TUTORIAL_SHRIMP
-
ETCETERIA_LOBSTER
public static final FishingSpot ETCETERIA_LOBSTER
-
QUEST_RUM_DEAL
public static final FishingSpot QUEST_RUM_DEAL
-
QUEST_TAI_BWO_WANNAI_TRIO
public static final FishingSpot QUEST_TAI_BWO_WANNAI_TRIO
-
QUEST_FISHING_CONTEST
public static final FishingSpot QUEST_FISHING_CONTEST
-
CIVITAS_ILLA_FORTIS_PARK
public static final FishingSpot CIVITAS_ILLA_FORTIS_PARK
-
-
Method Detail
-
values
public static FishingSpot[] 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 (FishingSpot c : FishingSpot.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static FishingSpot 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
-
findSpot
public static FishingSpot findSpot(int id)
-
getName
public String getName()
-
getWorldMapTooltip
public String getWorldMapTooltip()
-
getFishSpriteId
public int getFishSpriteId()
-
getIds
public int[] getIds()
-
-