Enum CharterShip.ShipLocation
- java.lang.Object
-
- java.lang.Enum<CharterShip.ShipLocation>
-
- net.storm.api.movement.pathfinder.model.CharterShip.ShipLocation
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<CharterShip.ShipLocation>
- Enclosing class:
- CharterShip
public static enum CharterShip.ShipLocation extends java.lang.Enum<CharterShip.ShipLocation>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ALDARIN
BRIMHAVEN
CATHERBY
CIVITAS_ILLA_FORTIS
CORSAIR_COVE
LANDS_END
MOS_LE_HARMLESS
MUSA_POINT
PORT_KHAZARD
PORT_PHASMATYS
PORT_PISCARILIUS
PORT_SARIM
PORT_TYRAS
PRIFDDINAS
SHIPYARD
SUNSET_COAST
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description IWidget
getWidget()
static CharterShip.ShipLocation
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static CharterShip.ShipLocation[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ALDARIN
public static final CharterShip.ShipLocation ALDARIN
-
BRIMHAVEN
public static final CharterShip.ShipLocation BRIMHAVEN
-
CATHERBY
public static final CharterShip.ShipLocation CATHERBY
-
CIVITAS_ILLA_FORTIS
public static final CharterShip.ShipLocation CIVITAS_ILLA_FORTIS
-
CORSAIR_COVE
public static final CharterShip.ShipLocation CORSAIR_COVE
-
LANDS_END
public static final CharterShip.ShipLocation LANDS_END
-
MUSA_POINT
public static final CharterShip.ShipLocation MUSA_POINT
-
MOS_LE_HARMLESS
public static final CharterShip.ShipLocation MOS_LE_HARMLESS
-
PORT_KHAZARD
public static final CharterShip.ShipLocation PORT_KHAZARD
-
PORT_PHASMATYS
public static final CharterShip.ShipLocation PORT_PHASMATYS
-
PORT_SARIM
public static final CharterShip.ShipLocation PORT_SARIM
-
PORT_TYRAS
public static final CharterShip.ShipLocation PORT_TYRAS
-
SHIPYARD
public static final CharterShip.ShipLocation SHIPYARD
-
SUNSET_COAST
public static final CharterShip.ShipLocation SUNSET_COAST
-
PORT_PISCARILIUS
public static final CharterShip.ShipLocation PORT_PISCARILIUS
-
PRIFDDINAS
public static final CharterShip.ShipLocation PRIFDDINAS
-
-
Method Detail
-
values
public static CharterShip.ShipLocation[] 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 (CharterShip.ShipLocation c : CharterShip.ShipLocation.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CharterShip.ShipLocation 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
-
getWidget
public IWidget getWidget()
-
-