Enum WebBankArea
- java.lang.Object
-
- java.lang.Enum<WebBankArea>
-
- org.dreambot.api.methods.walking.web.node.impl.bank.WebBankArea
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<WebBankArea>
public enum WebBankArea extends java.lang.Enum<WebBankArea>
Created with IntelliJ IDEA. User: NotoriousPP Date: 11/13/13 Time: 11:05 PM
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description Area
getArea()
static WebBankArea
parse(java.lang.String string)
java.lang.String
toString()
static WebBankArea
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static WebBankArea[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
LUMBRIDGE
public static final WebBankArea LUMBRIDGE
-
DRAYNOR_MARKET
public static final WebBankArea DRAYNOR_MARKET
-
AL_KHARID
public static final WebBankArea AL_KHARID
-
BURGH_DE_ROTT
public static final WebBankArea BURGH_DE_ROTT
-
CANIFIS
public static final WebBankArea CANIFIS
-
GRAND_EXCHANGE
public static final WebBankArea GRAND_EXCHANGE
-
VARROCK_WEST
public static final WebBankArea VARROCK_WEST
-
VARROCK_EAST
public static final WebBankArea VARROCK_EAST
-
FALADOR_WEST
public static final WebBankArea FALADOR_WEST
-
CASTLE_WARS
public static final WebBankArea CASTLE_WARS
-
PORT_PHASMATYS
public static final WebBankArea PORT_PHASMATYS
-
FALADOR_EAST
public static final WebBankArea FALADOR_EAST
-
NEITIZNOT
public static final WebBankArea NEITIZNOT
-
JATIZSO
public static final WebBankArea JATIZSO
-
NARDAH
public static final WebBankArea NARDAH
-
EDGEVILLE
public static final WebBankArea EDGEVILLE
-
DUEL_ARENA
public static final WebBankArea DUEL_ARENA
-
CATHERBY
public static final WebBankArea CATHERBY
-
ARDOUGNE_NORTH
public static final WebBankArea ARDOUGNE_NORTH
-
ARDOUGNE_SOUTH
public static final WebBankArea ARDOUGNE_SOUTH
-
SEERS_VILLAGE
public static final WebBankArea SEERS_VILLAGE
-
GNOME_STRONGHOLD
public static final WebBankArea GNOME_STRONGHOLD
-
ROUGES_DEN
public static final WebBankArea ROUGES_DEN
-
SHILO_VILLAGE
public static final WebBankArea SHILO_VILLAGE
-
SHANTY_PASS
public static final WebBankArea SHANTY_PASS
-
MISCELLANIA
public static final WebBankArea MISCELLANIA
-
PICATORIS
public static final WebBankArea PICATORIS
-
YANILLE
public static final WebBankArea YANILLE
-
TZHAAR
public static final WebBankArea TZHAAR
-
-
Method Detail
-
values
public static WebBankArea[] 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 (WebBankArea c : WebBankArea.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static WebBankArea 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
-
parse
public static WebBankArea parse(java.lang.String string)
-
getArea
public Area getArea()
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Enum<WebBankArea>
-
-