Enum SpiritTree
- java.lang.Object
-
- java.lang.Enum<SpiritTree>
-
- net.storm.api.movement.pathfinder.model.SpiritTree
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<SpiritTree>
public enum SpiritTree extends java.lang.Enum<SpiritTree>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BATTLEFIELD_OF_KHAZARD
BRIMHAVEN
ETCETERIA
FARMING_GUILD
FELDIP_HILLS
GNOME_STRONGHOLD
GRAND_EXCHANGE
HOSIDIUS
POISON_WASTE
PORT_SARIM
PRIFDDINAS
TREE_GNOME_VILLAGE
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SpiritTree[]
getAll()
static java.util.Set<SpiritTree>
getAllWithNoRequirements()
static java.util.List<Transport>
getTransports()
static SpiritTree
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static SpiritTree[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
TREE_GNOME_VILLAGE
public static final SpiritTree TREE_GNOME_VILLAGE
-
GNOME_STRONGHOLD
public static final SpiritTree GNOME_STRONGHOLD
-
BATTLEFIELD_OF_KHAZARD
public static final SpiritTree BATTLEFIELD_OF_KHAZARD
-
GRAND_EXCHANGE
public static final SpiritTree GRAND_EXCHANGE
-
FELDIP_HILLS
public static final SpiritTree FELDIP_HILLS
-
PRIFDDINAS
public static final SpiritTree PRIFDDINAS
-
POISON_WASTE
public static final SpiritTree POISON_WASTE
-
PORT_SARIM
public static final SpiritTree PORT_SARIM
-
ETCETERIA
public static final SpiritTree ETCETERIA
-
BRIMHAVEN
public static final SpiritTree BRIMHAVEN
-
HOSIDIUS
public static final SpiritTree HOSIDIUS
-
FARMING_GUILD
public static final SpiritTree FARMING_GUILD
-
-
Method Detail
-
values
public static SpiritTree[] 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 (SpiritTree c : SpiritTree.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SpiritTree 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
-
getAll
public static SpiritTree[] getAll()
-
getAllWithNoRequirements
public static java.util.Set<SpiritTree> getAllWithNoRequirements()
-
getTransports
public static java.util.List<Transport> getTransports()
-
-