Enum MooringLocation
- java.lang.Object
-
- java.lang.Enum<MooringLocation>
-
- net.runelite.client.plugins.worldmap.MooringLocation
-
- All Implemented Interfaces:
Serializable,Comparable<MooringLocation>
public enum MooringLocation extends Enum<MooringLocation>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetLevelReq()WorldPointgetLocation()StringgetTooltip()static MooringLocationvalueOf(String name)Returns the enum constant of this type with the specified name.static MooringLocation[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PORT_SARIM
public static final MooringLocation PORT_SARIM
-
THE_PANDEMONIUM
public static final MooringLocation THE_PANDEMONIUM
-
LANDS_END
public static final MooringLocation LANDS_END
-
HOSIDIUS
public static final MooringLocation HOSIDIUS
-
MUSA_POINT
public static final MooringLocation MUSA_POINT
-
PORT_PISCARILLIUS
public static final MooringLocation PORT_PISCARILLIUS
-
RIMMINGTON
public static final MooringLocation RIMMINGTON
-
CATHERBY
public static final MooringLocation CATHERBY
-
BRIMHAVEN
public static final MooringLocation BRIMHAVEN
-
ARDOUGNE
public static final MooringLocation ARDOUGNE
-
PORT_KHAZARD
public static final MooringLocation PORT_KHAZARD
-
WITCHAVEN
public static final MooringLocation WITCHAVEN
-
ENTRANA
public static final MooringLocation ENTRANA
-
CIVITAS_ILLA_FORTIS
public static final MooringLocation CIVITAS_ILLA_FORTIS
-
CORSAIR_COVE
public static final MooringLocation CORSAIR_COVE
-
DOGNOSE_ISLAND
public static final MooringLocation DOGNOSE_ISLAND
-
CAIRN_ISLE
public static final MooringLocation CAIRN_ISLE
-
CHINCHOMPA_ISLAND
public static final MooringLocation CHINCHOMPA_ISLAND
-
SUNSET_COAST
public static final MooringLocation SUNSET_COAST
-
REMOTE_ISLAND
public static final MooringLocation REMOTE_ISLAND
-
THE_SUMMER_SHORE
public static final MooringLocation THE_SUMMER_SHORE
-
THE_LITTLE_PEARL
public static final MooringLocation THE_LITTLE_PEARL
-
ALDARIN
public static final MooringLocation ALDARIN
-
VATRACHOS_ISLAND
public static final MooringLocation VATRACHOS_ISLAND
-
THE_ONYX_CREST
public static final MooringLocation THE_ONYX_CREST
-
RUINS_OF_UNKAH
public static final MooringLocation RUINS_OF_UNKAH
-
SHIMMERING_ATOLL
public static final MooringLocation SHIMMERING_ATOLL
-
VOID_KNIGHTS_OUTPOST
public static final MooringLocation VOID_KNIGHTS_OUTPOST
-
PORT_ROBERTS
public static final MooringLocation PORT_ROBERTS
-
ANGLERS_RETREAT
public static final MooringLocation ANGLERS_RETREAT
-
MINOTAURS_REST
public static final MooringLocation MINOTAURS_REST
-
ISLE_OF_SOULS
public static final MooringLocation ISLE_OF_SOULS
-
ISLE_OF_BONES
public static final MooringLocation ISLE_OF_BONES
-
LAGUNA_AURORAE
public static final MooringLocation LAGUNA_AURORAE
-
CHARRED_ISLAND
public static final MooringLocation CHARRED_ISLAND
-
TEAR_OF_THE_SOUL
public static final MooringLocation TEAR_OF_THE_SOUL
-
RELLEKKA
public static final MooringLocation RELLEKKA
-
WINTUMBER_ISLAND
public static final MooringLocation WINTUMBER_ISLAND
-
THE_CROWN_JEWEL
public static final MooringLocation THE_CROWN_JEWEL
-
ETCETERIA
public static final MooringLocation ETCETERIA
-
PORT_TYRAS
public static final MooringLocation PORT_TYRAS
-
LLEDRITH_ISLAND
public static final MooringLocation LLEDRITH_ISLAND
-
DEEPFIN_POINT
public static final MooringLocation DEEPFIN_POINT
-
JATIZSO
public static final MooringLocation JATIZSO
-
NETIZNOT
public static final MooringLocation NETIZNOT
-
RAINBOWS_END
public static final MooringLocation RAINBOWS_END
-
PRIFDDINAS
public static final MooringLocation PRIFDDINAS
-
SUNBLEAK_ISLAND
public static final MooringLocation SUNBLEAK_ISLAND
-
YNYSDAIL
public static final MooringLocation YNYSDAIL
-
WATERBIRTH_ISLAND
public static final MooringLocation WATERBIRTH_ISLAND
-
PISCATORIS
public static final MooringLocation PISCATORIS
-
LUNAR_ISLE
public static final MooringLocation LUNAR_ISLE
-
BUCCANEERS_HAVEN
public static final MooringLocation BUCCANEERS_HAVEN
-
DRUMSTICK_ISLE
public static final MooringLocation DRUMSTICK_ISLE
-
WEISS
public static final MooringLocation WEISS
-
BRITTLE_ISLE
public static final MooringLocation BRITTLE_ISLE
-
GRIMSTONE
public static final MooringLocation GRIMSTONE
-
-
Method Detail
-
values
public static MooringLocation[] 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 (MooringLocation c : MooringLocation.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MooringLocation 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
-
getTooltip
public String getTooltip()
-
getLevelReq
public int getLevelReq()
-
getLocation
public WorldPoint getLocation()
-
-