Package net.storm.api.widgets
Enum MinigameTeleport
- java.lang.Object
-
- java.lang.Enum<MinigameTeleport>
-
- net.storm.api.widgets.MinigameTeleport
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<MinigameTeleport>
public enum MinigameTeleport extends java.lang.Enum<MinigameTeleport>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static MinigameTeleport
byName(java.lang.String name)
boolean
canUse()
static MinigameTeleport
getCurrent()
boolean
hasDestination()
static MinigameTeleport
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static MinigameTeleport[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BARBARIAN_ASSAULT
public static final MinigameTeleport BARBARIAN_ASSAULT
-
BLAST_FURNACE
public static final MinigameTeleport BLAST_FURNACE
-
BURTHORPE_GAMES_ROOM
public static final MinigameTeleport BURTHORPE_GAMES_ROOM
-
CASTLE_WARS
public static final MinigameTeleport CASTLE_WARS
-
CLAN_WARS
public static final MinigameTeleport CLAN_WARS
-
DAGANNOTH_KINGS
public static final MinigameTeleport DAGANNOTH_KINGS
-
FISHING_TRAWLER
public static final MinigameTeleport FISHING_TRAWLER
-
GIANTS_FOUNDRY
public static final MinigameTeleport GIANTS_FOUNDRY
-
GOD_WARS
public static final MinigameTeleport GOD_WARS
-
GUARDIANS_OF_THE_RIFT
public static final MinigameTeleport GUARDIANS_OF_THE_RIFT
-
LAST_MAN_STANDING
public static final MinigameTeleport LAST_MAN_STANDING
-
MAGE_TRAINING_ARENA
public static final MinigameTeleport MAGE_TRAINING_ARENA
-
NIGHTMARE_ZONE
public static final MinigameTeleport NIGHTMARE_ZONE
-
PEST_CONTROL
public static final MinigameTeleport PEST_CONTROL
-
PLAYER_OWNED_HOUSES
public static final MinigameTeleport PLAYER_OWNED_HOUSES
-
RAT_PITS_ARDOUGNE
public static final MinigameTeleport RAT_PITS_ARDOUGNE
-
RAT_PITS_VARROCK
public static final MinigameTeleport RAT_PITS_VARROCK
-
RAT_PITS_KELDAGRIM
public static final MinigameTeleport RAT_PITS_KELDAGRIM
-
RAT_PITS_PORT_SARIM
public static final MinigameTeleport RAT_PITS_PORT_SARIM
-
ROYAL_TITANS
public static final MinigameTeleport ROYAL_TITANS
-
SHADES_OF_MORTTON
public static final MinigameTeleport SHADES_OF_MORTTON
-
SHIELD_OF_ARRAV
public static final MinigameTeleport SHIELD_OF_ARRAV
-
SHOOTING_STARS
public static final MinigameTeleport SHOOTING_STARS
-
SOUL_WARS
public static final MinigameTeleport SOUL_WARS
-
THEATRE_OF_BLOOD
public static final MinigameTeleport THEATRE_OF_BLOOD
-
TITHE_FARM
public static final MinigameTeleport TITHE_FARM
-
TOMBS_OF_AMASCUT
public static final MinigameTeleport TOMBS_OF_AMASCUT
-
TROUBLE_BREWING
public static final MinigameTeleport TROUBLE_BREWING
-
TZHAAR_FIGHT_PIT
public static final MinigameTeleport TZHAAR_FIGHT_PIT
-
VOLCANIC_MINE
public static final MinigameTeleport VOLCANIC_MINE
-
NONE
public static final MinigameTeleport NONE
-
-
Method Detail
-
values
public static MinigameTeleport[] 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 (MinigameTeleport c : MinigameTeleport.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MinigameTeleport 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
-
getCurrent
public static MinigameTeleport getCurrent()
-
byName
public static MinigameTeleport byName(java.lang.String name)
-
canUse
public boolean canUse()
-
hasDestination
public boolean hasDestination()
-
-