Enum GnomeGlider.GliderLocation
- java.lang.Object
-
- java.lang.Enum<GnomeGlider.GliderLocation>
-
- net.storm.api.movement.pathfinder.model.GnomeGlider.GliderLocation
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<GnomeGlider.GliderLocation>
- Enclosing class:
- GnomeGlider
public static enum GnomeGlider.GliderLocation extends java.lang.Enum<GnomeGlider.GliderLocation>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AL_KHARID
APE_ATOLL
DIGSITE
FELDIP_HILLS
GRAND_TREE
KARAMJA
WHITE_WOLF_MOUNTAIN
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description IWidget
getWidget()
static GnomeGlider.GliderLocation
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static GnomeGlider.GliderLocation[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
GRAND_TREE
public static final GnomeGlider.GliderLocation GRAND_TREE
-
WHITE_WOLF_MOUNTAIN
public static final GnomeGlider.GliderLocation WHITE_WOLF_MOUNTAIN
-
DIGSITE
public static final GnomeGlider.GliderLocation DIGSITE
-
AL_KHARID
public static final GnomeGlider.GliderLocation AL_KHARID
-
FELDIP_HILLS
public static final GnomeGlider.GliderLocation FELDIP_HILLS
-
APE_ATOLL
public static final GnomeGlider.GliderLocation APE_ATOLL
-
KARAMJA
public static final GnomeGlider.GliderLocation KARAMJA
-
-
Method Detail
-
values
public static GnomeGlider.GliderLocation[] 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 (GnomeGlider.GliderLocation c : GnomeGlider.GliderLocation.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static GnomeGlider.GliderLocation 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()
-
-