Package org.rspeer.game.house
Enum Teleport
- java.lang.Object
-
- java.lang.Enum<Teleport>
-
- org.rspeer.game.house.Teleport
-
- All Implemented Interfaces:
Serializable
,Comparable<Teleport>
public enum Teleport extends Enum<Teleport>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static Teleport
fromAction(String action)
String[]
getActions()
String
toString()
static Teleport
valueOf(String name)
Returns the enum constant of this type with the specified name.static Teleport[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ANNAKARL
public static final Teleport ANNAKARL
-
APE_ATOLL_DUNGEON
public static final Teleport APE_ATOLL_DUNGEON
-
ARDOUGNE
public static final Teleport ARDOUGNE
-
ARCEUUS_LIBRARY
public static final Teleport ARCEUUS_LIBRARY
-
BARROWS
public static final Teleport BARROWS
-
BATTLEFRONT
public static final Teleport BATTLEFRONT
-
CAMELOT
public static final Teleport CAMELOT
-
CARRALANGAR
public static final Teleport CARRALANGAR
-
CATHERBY
public static final Teleport CATHERBY
-
DRAYNOR_MANOR
public static final Teleport DRAYNOR_MANOR
-
FALADOR
public static final Teleport FALADOR
-
FENKENSTRAIN_CASTLE
public static final Teleport FENKENSTRAIN_CASTLE
-
FISHING_GUILD
public static final Teleport FISHING_GUILD
-
GHORROCK
public static final Teleport GHORROCK
-
GRAND_EXCHANGE
public static final Teleport GRAND_EXCHANGE
-
HARMONY_ISLAND
public static final Teleport HARMONY_ISLAND
-
KHARYLL
public static final Teleport KHARYLL
-
KOUREND_CASTLE
public static final Teleport KOUREND_CASTLE
-
LUMBRIDGE
public static final Teleport LUMBRIDGE
-
LUNAR_ISLE
public static final Teleport LUNAR_ISLE
-
MARIM
public static final Teleport MARIM
-
MIND_ALTAR
public static final Teleport MIND_ALTAR
-
SALVE_GRAVEYARD
public static final Teleport SALVE_GRAVEYARD
-
SEERS_VILLAGE
public static final Teleport SEERS_VILLAGE
-
SENNTISTEN
public static final Teleport SENNTISTEN
-
FORGOTTEN_CEMETERY
public static final Teleport FORGOTTEN_CEMETERY
-
TROLL_STRONGHOLD
public static final Teleport TROLL_STRONGHOLD
-
VARROCK
public static final Teleport VARROCK
-
WATCHTOWER
public static final Teleport WATCHTOWER
-
WATERBIRTH_ISLAND
public static final Teleport WATERBIRTH_ISLAND
-
WEISS
public static final Teleport WEISS
-
WEST_ARDOUGNE
public static final Teleport WEST_ARDOUGNE
-
YANILLE
public static final Teleport YANILLE
-
-
Method Detail
-
values
public static Teleport[] 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 (Teleport c : Teleport.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Teleport 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
-
getActions
public String[] getActions()
-
-