Enum Minecart
- java.lang.Object
-
- java.lang.Enum<Minecart>
-
- net.storm.api.movement.pathfinder.model.Minecart
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ARCEUUS
FARMING_GUILD
HOSIDIUS_SOUTH
HOSIDIUS_WEST
KINGSTOWN
KOUREND_WOODLAND
LOVAKENGJ
MOUNT_QUIDAMORTEM
NORTHERN_TUNDRAS
PORT_PISCARILIUS
SHAYZIEN_EAST
SHAYZIEN_WEST
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
canUse()
static java.util.List<Transport>
getMinecartTransports()
static Minecart
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static Minecart[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ARCEUUS
public static final Minecart ARCEUUS
-
FARMING_GUILD
public static final Minecart FARMING_GUILD
-
HOSIDIUS_SOUTH
public static final Minecart HOSIDIUS_SOUTH
-
HOSIDIUS_WEST
public static final Minecart HOSIDIUS_WEST
-
KINGSTOWN
public static final Minecart KINGSTOWN
-
KOUREND_WOODLAND
public static final Minecart KOUREND_WOODLAND
-
LOVAKENGJ
public static final Minecart LOVAKENGJ
-
MOUNT_QUIDAMORTEM
public static final Minecart MOUNT_QUIDAMORTEM
-
NORTHERN_TUNDRAS
public static final Minecart NORTHERN_TUNDRAS
-
PORT_PISCARILIUS
public static final Minecart PORT_PISCARILIUS
-
SHAYZIEN_EAST
public static final Minecart SHAYZIEN_EAST
-
SHAYZIEN_WEST
public static final Minecart SHAYZIEN_WEST
-
-
Method Detail
-
values
public static Minecart[] 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 (Minecart c : Minecart.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Minecart 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
-
getMinecartTransports
public static java.util.List<Transport> getMinecartTransports()
-
canUse
public boolean canUse()
-
-