Enum Class GnomeGlider
- All Implemented Interfaces:
Serializable,Comparable<GnomeGlider>,Constable
Enumeration of all Gnome Glider routes in the transportation network.
GnomeGlider represents the gnome glider transportation system accessible after completing The Grand Tree quest. Each enum value represents a route between two glider locations.
Glider Locations
- Grand Tree (Ta Quir Priw) - Starting point in Gnome Stronghold
- White Wolf Mountain (Sindarpos) - Mountain pass location
- Digsite (Lemanto Andra) - Near the Digsite
- Al Kharid (Kar-Hewo) - Desert location
- Feldip Hills (Lemantolly Undri) - Requires One Small Favour
- Ape Atoll (Ookookolly Undri) - Requires Monkey Madness II
- Karamja (Gandius) - Crash Site Cavern area
Requirements
All glider routes require The Grand Tree quest completion. Some routes have additional requirements:
- Feldip Hills - One Small Favour quest
- Ape Atoll - Monkey Madness II quest
Usage Example
GnomeGlider route = GnomeGlider.GRAND_TREE_TO_AL_KHARID;
if (route.getRequirements().fulfilled()) {
WorldPoint destination = route.getDestination().getLocation();
}
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic enumEnumeration of physical gnome glider locations.Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescription -
Method Summary
Modifier and TypeMethodDescriptionGets all requirements for this glider route.Generates Transport objects for all accessible glider routes.static GnomeGliderReturns the enum constant of this class with the specified name.static GnomeGlider[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
GRAND_TREE_TO_WHITE_WOLF_MOUNTAIN
-
GRAND_TREE_TO_DIGSITE
-
GRAND_TREE_TO_AL_KHARID
-
GRAND_TREE_TO_FELDIP_HILLS
-
GRAND_TREE_TO_APE_ATOLL
-
GRAND_TREE_TO_KARAMJA
-
WHITE_WOLF_MOUNTAIN_TO_GRAND_TREE
-
WHITE_WOLF_MOUNTAIN_TO_DIGSITE
-
WHITE_WOLF_MOUNTAIN_TO_AL_KHARID
-
WHITE_WOLF_MOUNTAIN_TO_FELDIP_HILLS
-
WHITE_WOLF_MOUNTAIN_TO_APE_ATOLL
-
WHITE_WOLF_MOUNTAIN_TO_KARAMJA
-
AL_KHARID_TO_GRAND_TREE
-
AL_KHARID_TO_WHITE_WOLF_MOUNTAIN
-
AL_KHARID_TO_DIGSITE
-
AL_KHARID_TO_FELDIP_HILLS
-
AL_KHARID_TO_APE_ATOLL
-
AL_KHARID_TO_KARAMJA
-
FELDIP_HILLS_TO_GRAND_TREE
-
FELDIP_HILLS_TO_WHITE_WOLF_MOUNTAIN
-
FELDIP_HILLS_TO_DIGSITE
-
FELDIP_HILLS_TO_AL_KHARID
-
FELDIP_HILLS_TO_APE_ATOLL
-
FELDIP_HILLS_TO_KARAMJA
-
APE_ATOLL_TO_GRAND_TREE
-
APE_ATOLL_TO_WHITE_WOLF_MOUNTAIN
-
APE_ATOLL_TO_DIGSITE
-
APE_ATOLL_TO_AL_KHARID
-
APE_ATOLL_TO_FELDIP_HILLS
-
APE_ATOLL_TO_KARAMJA
-
KARAMJA_TO_GRAND_TREE
-
KARAMJA_TO_WHITE_WOLF_MOUNTAIN
-
KARAMJA_TO_DIGSITE
-
KARAMJA_TO_AL_KHARID
-
KARAMJA_TO_FELDIP_HILLS
-
KARAMJA_TO_APE_ATOLL
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-
getTransports
Generates Transport objects for all accessible glider routes.- Returns:
- list of glider transports whose requirements are met
-
getRequirements
Gets all requirements for this glider route.Includes The Grand Tree quest requirement and any additional requirements specific to this route.
- Returns:
- the combined requirements
-