Enum Banks.Location
- java.lang.Object
-
- java.lang.Enum<Banks.Location>
-
- com.osrsbots.orb.api.interactables.world.locations.Banks.Location
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<Banks.Location>
- Enclosing class:
- Banks
public static enum Banks.Location extends java.lang.Enum<Banks.Location>
-
-
Enum Constant Summary
-
Field Summary
Fields Modifier and Type Field Description net.runelite.api.coords.WorldAreaworldArea
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Banks.LocationvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static Banks.Location[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AL_KHARID
public static final Banks.Location AL_KHARID
-
ARDOUGNE_SOUTH
public static final Banks.Location ARDOUGNE_SOUTH
-
ARDOUGNE_NORTH
public static final Banks.Location ARDOUGNE_NORTH
-
BARBARIAN_OUTPOST
public static final Banks.Location BARBARIAN_OUTPOST
-
BURGH_DE_ROTT
public static final Banks.Location BURGH_DE_ROTT
-
CASTLE_WARS
public static final Banks.Location CASTLE_WARS
-
CATHERBY
public static final Banks.Location CATHERBY
-
CANAFIS
public static final Banks.Location CANAFIS
-
CULINAROMANCERS_CHEST
public static final Banks.Location CULINAROMANCERS_CHEST
-
CRAFTING_GUILD
public static final Banks.Location CRAFTING_GUILD
-
DRAYNOR
public static final Banks.Location DRAYNOR
-
ECTERIA
public static final Banks.Location ECTERIA
-
EMIRS_ARENA
public static final Banks.Location EMIRS_ARENA
-
EDGEVILLE
public static final Banks.Location EDGEVILLE
-
FALADOR_EAST
public static final Banks.Location FALADOR_EAST
-
FALADOR_WEST
public static final Banks.Location FALADOR_WEST
-
FEROX_ENCLAVE
public static final Banks.Location FEROX_ENCLAVE
-
FISHING_GUILD
public static final Banks.Location FISHING_GUILD
-
GNOME_STRONGHOLD
public static final Banks.Location GNOME_STRONGHOLD
-
GRAND_EXCHANGE
public static final Banks.Location GRAND_EXCHANGE
-
KELDAGRIM
public static final Banks.Location KELDAGRIM
-
LLETYA
public static final Banks.Location LLETYA
-
LUNAR_ISLE
public static final Banks.Location LUNAR_ISLE
-
LUMBRIDGE_CASTLE
public static final Banks.Location LUMBRIDGE_CASTLE
-
COOKS_GUILD
public static final Banks.Location COOKS_GUILD
-
DORGESH_KAAN
public static final Banks.Location DORGESH_KAAN
-
NEITIZNOT
public static final Banks.Location NEITIZNOT
-
JATIZSO
public static final Banks.Location JATIZSO
-
MAGE_TRAINING_ARENA
public static final Banks.Location MAGE_TRAINING_ARENA
-
MOS_LEHARMLESS
public static final Banks.Location MOS_LEHARMLESS
-
NARDAH
public static final Banks.Location NARDAH
-
PEST_CONTROL
public static final Banks.Location PEST_CONTROL
-
PISCATORIS
public static final Banks.Location PISCATORIS
-
PORT_KHAZARD
public static final Banks.Location PORT_KHAZARD
-
PORT_PHASMATYS
public static final Banks.Location PORT_PHASMATYS
-
SEERS_VILLAGE
public static final Banks.Location SEERS_VILLAGE
-
SHANTAY_PASS
public static final Banks.Location SHANTAY_PASS
-
SHILO_VILLAGE
public static final Banks.Location SHILO_VILLAGE
-
WARRIORS_GUILD
public static final Banks.Location WARRIORS_GUILD
-
TZHAAR_CITY
public static final Banks.Location TZHAAR_CITY
-
VARROCK_EAST
public static final Banks.Location VARROCK_EAST
-
VARROCK_WEST
public static final Banks.Location VARROCK_WEST
-
YANILLE
public static final Banks.Location YANILLE
-
-
Method Detail
-
values
public static Banks.Location[] 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 (Banks.Location c : Banks.Location.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Banks.Location valueOf(java.lang.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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-