Enum TeleportSpell
- java.lang.Object
-
- java.lang.Enum<TeleportSpell>
-
- net.storm.api.movement.pathfinder.model.TeleportSpell
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<TeleportSpell>
public enum TeleportSpell extends java.lang.Enum<TeleportSpell>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
canCast()
void
cast()
net.runelite.api.coords.WorldPoint
getPoint()
static TeleportSpell
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static TeleportSpell[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
LUMBRIDGE_HOME_TELEPORT
public static final TeleportSpell LUMBRIDGE_HOME_TELEPORT
-
TELEPORT_TO_HOUSE
public static final TeleportSpell TELEPORT_TO_HOUSE
-
TELEPORT_TO_HOUSE_OUTSIDE
public static final TeleportSpell TELEPORT_TO_HOUSE_OUTSIDE
-
VARROCK_TELEPORT
public static final TeleportSpell VARROCK_TELEPORT
-
LUMBRIDGE_TELEPORT
public static final TeleportSpell LUMBRIDGE_TELEPORT
-
FALADOR_TELEPORT
public static final TeleportSpell FALADOR_TELEPORT
-
CAMELOT_TELEPORT
public static final TeleportSpell CAMELOT_TELEPORT
-
ARDOUGNE_TELEPORT
public static final TeleportSpell ARDOUGNE_TELEPORT
-
CIVITAS_TELEPORT
public static final TeleportSpell CIVITAS_TELEPORT
-
WATCHTOWER_TELEPORT
public static final TeleportSpell WATCHTOWER_TELEPORT
-
TROLLHEIM_TELEPORT
public static final TeleportSpell TROLLHEIM_TELEPORT
-
TELEPORT_TO_KOUREND
public static final TeleportSpell TELEPORT_TO_KOUREND
-
TELEPORT_TO_APE_ATOLL
public static final TeleportSpell TELEPORT_TO_APE_ATOLL
-
EDGEVILLE_HOME_TELEPORT
public static final TeleportSpell EDGEVILLE_HOME_TELEPORT
-
PADDEWWA_TELEPORT
public static final TeleportSpell PADDEWWA_TELEPORT
-
SENNTISTEN_TELEPORT
public static final TeleportSpell SENNTISTEN_TELEPORT
-
KHARYRLL_TELEPORT
public static final TeleportSpell KHARYRLL_TELEPORT
-
LASSAR_TELEPORT
public static final TeleportSpell LASSAR_TELEPORT
-
DAREEYAK_TELEPORT
public static final TeleportSpell DAREEYAK_TELEPORT
-
CARRALLANGER_TELEPORT
public static final TeleportSpell CARRALLANGER_TELEPORT
-
ANNAKARL_TELEPORT
public static final TeleportSpell ANNAKARL_TELEPORT
-
GHORROCK_TELEPORT
public static final TeleportSpell GHORROCK_TELEPORT
-
LUNAR_HOME_TELEPORT
public static final TeleportSpell LUNAR_HOME_TELEPORT
-
MOONCLAN_TELEPORT
public static final TeleportSpell MOONCLAN_TELEPORT
-
OURANIA_TELEPORT
public static final TeleportSpell OURANIA_TELEPORT
-
WATERBIRTH_TELEPORT
public static final TeleportSpell WATERBIRTH_TELEPORT
-
BARBARIAN_TELEPORT
public static final TeleportSpell BARBARIAN_TELEPORT
-
KHAZARD_TELEPORT
public static final TeleportSpell KHAZARD_TELEPORT
-
FISHING_GUILD_TELEPORT
public static final TeleportSpell FISHING_GUILD_TELEPORT
-
CATHERBY_TELEPORT
public static final TeleportSpell CATHERBY_TELEPORT
-
ICE_PLATEAU_TELEPORT
public static final TeleportSpell ICE_PLATEAU_TELEPORT
-
ARCEUUS_HOME_TELEPORT
public static final TeleportSpell ARCEUUS_HOME_TELEPORT
-
ARCEUUS_LIBRARY_TELEPORT
public static final TeleportSpell ARCEUUS_LIBRARY_TELEPORT
-
DRAYNOR_MANOR_TELEPORT
public static final TeleportSpell DRAYNOR_MANOR_TELEPORT
-
BATTLEFRONT_TELEPORT
public static final TeleportSpell BATTLEFRONT_TELEPORT
-
MIND_ALTAR_TELEPORT
public static final TeleportSpell MIND_ALTAR_TELEPORT
-
RESPAWN_TELEPORT
public static final TeleportSpell RESPAWN_TELEPORT
-
SALVE_GRAVEYARD_TELEPORT
public static final TeleportSpell SALVE_GRAVEYARD_TELEPORT
-
FENKENSTRAINS_CASTLE_TELEPORT
public static final TeleportSpell FENKENSTRAINS_CASTLE_TELEPORT
-
WEST_ARDOUGNE_TELEPORT
public static final TeleportSpell WEST_ARDOUGNE_TELEPORT
-
HARMONY_ISLAND_TELEPORT
public static final TeleportSpell HARMONY_ISLAND_TELEPORT
-
CEMETERY_TELEPORT
public static final TeleportSpell CEMETERY_TELEPORT
-
BARROWS_TELEPORT
public static final TeleportSpell BARROWS_TELEPORT
-
APE_ATOLL_TELEPORT
public static final TeleportSpell APE_ATOLL_TELEPORT
-
-
Method Detail
-
values
public static TeleportSpell[] 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 (TeleportSpell c : TeleportSpell.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TeleportSpell 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
-
canCast
public boolean canCast()
-
getPoint
public net.runelite.api.coords.WorldPoint getPoint()
-
cast
public void cast()
-
-