Enum TeleportScroll
- java.lang.Object
-
- java.lang.Enum<TeleportScroll>
-
- net.storm.api.movement.pathfinder.model.TeleportScroll
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<TeleportScroll>
public enum TeleportScroll extends java.lang.Enum<TeleportScroll>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DIGSITE
FELDIP_HILLS
IORWERTH
KEY_MASTER
LUMBERYARD
LUNAR_ISLE
MORTTON
MOS_LE_HARMLESS
NARDAH
PEST_CONTROL
PISCATORIS
REVENANT_CAVE
TAI_BWO_WANNAI
WATSON
ZUL_ANDRA
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
canUse()
boolean
use()
static TeleportScroll
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static TeleportScroll[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NARDAH
public static final TeleportScroll NARDAH
-
DIGSITE
public static final TeleportScroll DIGSITE
-
FELDIP_HILLS
public static final TeleportScroll FELDIP_HILLS
-
LUNAR_ISLE
public static final TeleportScroll LUNAR_ISLE
-
MORTTON
public static final TeleportScroll MORTTON
-
PEST_CONTROL
public static final TeleportScroll PEST_CONTROL
-
PISCATORIS
public static final TeleportScroll PISCATORIS
-
TAI_BWO_WANNAI
public static final TeleportScroll TAI_BWO_WANNAI
-
IORWERTH
public static final TeleportScroll IORWERTH
-
MOS_LE_HARMLESS
public static final TeleportScroll MOS_LE_HARMLESS
-
LUMBERYARD
public static final TeleportScroll LUMBERYARD
-
ZUL_ANDRA
public static final TeleportScroll ZUL_ANDRA
-
KEY_MASTER
public static final TeleportScroll KEY_MASTER
-
REVENANT_CAVE
public static final TeleportScroll REVENANT_CAVE
-
WATSON
public static final TeleportScroll WATSON
-
-
Method Detail
-
values
public static TeleportScroll[] 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 (TeleportScroll c : TeleportScroll.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TeleportScroll 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
-
canUse
public boolean canUse()
-
use
public boolean use()
-
-