Enum HousePortal
- java.lang.Object
-
- java.lang.Enum<HousePortal>
-
- net.storm.api.movement.pathfinder.model.poh.HousePortal
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<HousePortal>
public enum HousePortal extends java.lang.Enum<HousePortal>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getModifiedName()
static HousePortal
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static HousePortal[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ARCEUUS_LIBRARY
public static final HousePortal ARCEUUS_LIBRARY
-
DRAYNOR_MANOR
public static final HousePortal DRAYNOR_MANOR
-
BATTLEFRONT
public static final HousePortal BATTLEFRONT
-
VARROCK
public static final HousePortal VARROCK
-
GRAND_EXCHANGE
public static final HousePortal GRAND_EXCHANGE
-
MIND_ALTAR
public static final HousePortal MIND_ALTAR
-
LUMBRIDGE
public static final HousePortal LUMBRIDGE
-
FALADOR
public static final HousePortal FALADOR
-
SALVE_GRAVEYARD
public static final HousePortal SALVE_GRAVEYARD
-
CAMELOT
public static final HousePortal CAMELOT
-
SEERS_VILLAGE
public static final HousePortal SEERS_VILLAGE
-
FENKENSTRAINS_CASTLE
public static final HousePortal FENKENSTRAINS_CASTLE
-
EAST_ARDOUGNE
public static final HousePortal EAST_ARDOUGNE
-
WATCHTOWER
public static final HousePortal WATCHTOWER
-
YANILLE
public static final HousePortal YANILLE
-
SENNTISTEN
public static final HousePortal SENNTISTEN
-
WEST_ARDOUGNE
public static final HousePortal WEST_ARDOUGNE
-
MARIM
public static final HousePortal MARIM
-
HARMONY_ISLAND
public static final HousePortal HARMONY_ISLAND
-
KHARYRLL
public static final HousePortal KHARYRLL
-
LUNAR_ISLE
public static final HousePortal LUNAR_ISLE
-
KOUREND
public static final HousePortal KOUREND
-
CEMETERY
public static final HousePortal CEMETERY
-
WATERBIRTH_ISLAND
public static final HousePortal WATERBIRTH_ISLAND
-
BARROWS
public static final HousePortal BARROWS
-
CARRALLANGAR
public static final HousePortal CARRALLANGAR
-
FISHING_GUILD
public static final HousePortal FISHING_GUILD
-
CATHERBY
public static final HousePortal CATHERBY
-
ANNAKARL
public static final HousePortal ANNAKARL
-
APE_ATOLL_DUNGEON
public static final HousePortal APE_ATOLL_DUNGEON
-
GHORROCK
public static final HousePortal GHORROCK
-
TROLL_STRONGHOLD
public static final HousePortal TROLL_STRONGHOLD
-
WEISS
public static final HousePortal WEISS
-
CIVITAS_ILLA_FORTIS
public static final HousePortal CIVITAS_ILLA_FORTIS
-
-
Method Detail
-
values
public static HousePortal[] 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 (HousePortal c : HousePortal.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static HousePortal 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
-
getModifiedName
public java.lang.String getModifiedName()
-
-