Enum Standard
- java.lang.Object
-
- java.lang.Enum<Standard>
-
- com.kraken.api.service.magic.spellbook.Standard
-
- All Implemented Interfaces:
CastableSpell,java.io.Serializable,java.lang.Comparable<Standard>
public enum Standard extends java.lang.Enum<Standard> implements CastableSpell
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetAction()static StandardvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static Standard[]values()Returns an array containing the constants of this enum type, in the order they are declared.-
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
Methods inherited from interface com.kraken.api.service.magic.CastableSpell
getIndex, getLevel, getName, getRuneRequirement, getSpellbook, getWidget, isCastable
-
-
-
-
Enum Constant Detail
-
HOME_TELEPORT
public static final Standard HOME_TELEPORT
-
VARROCK_TELEPORT
public static final Standard VARROCK_TELEPORT
-
GRAND_EXCHANGE_TELEPORT
public static final Standard GRAND_EXCHANGE_TELEPORT
-
LUMBRIDGE_TELEPORT
public static final Standard LUMBRIDGE_TELEPORT
-
FALADOR_TELEPORT
public static final Standard FALADOR_TELEPORT
-
TELEPORT_TO_HOUSE
public static final Standard TELEPORT_TO_HOUSE
-
CAMELOT_TELEPORT
public static final Standard CAMELOT_TELEPORT
-
SEERS_TELEPORT
public static final Standard SEERS_TELEPORT
-
ARDOUGNE_TELEPORT
public static final Standard ARDOUGNE_TELEPORT
-
WATCHTOWER_TELEPORT
public static final Standard WATCHTOWER_TELEPORT
-
YANILLE_TELEPORT
public static final Standard YANILLE_TELEPORT
-
TROLLHEIM_TELEPORT
public static final Standard TROLLHEIM_TELEPORT
-
TELEPORT_TO_APE_ATOLL
public static final Standard TELEPORT_TO_APE_ATOLL
-
TELEPORT_TO_KOUREND
public static final Standard TELEPORT_TO_KOUREND
-
TELEOTHER_LUMBRIDGE
public static final Standard TELEOTHER_LUMBRIDGE
-
TELEOTHER_FALADOR
public static final Standard TELEOTHER_FALADOR
-
TELEPORT_TO_BOUNTY_TARGET
public static final Standard TELEPORT_TO_BOUNTY_TARGET
-
TELEOTHER_CAMELOT
public static final Standard TELEOTHER_CAMELOT
-
WIND_STRIKE
public static final Standard WIND_STRIKE
-
WATER_STRIKE
public static final Standard WATER_STRIKE
-
EARTH_STRIKE
public static final Standard EARTH_STRIKE
-
FIRE_STRIKE
public static final Standard FIRE_STRIKE
-
WIND_BOLT
public static final Standard WIND_BOLT
-
WATER_BOLT
public static final Standard WATER_BOLT
-
EARTH_BOLT
public static final Standard EARTH_BOLT
-
FIRE_BOLT
public static final Standard FIRE_BOLT
-
WIND_BLAST
public static final Standard WIND_BLAST
-
WATER_BLAST
public static final Standard WATER_BLAST
-
EARTH_BLAST
public static final Standard EARTH_BLAST
-
FIRE_BLAST
public static final Standard FIRE_BLAST
-
WIND_WAVE
public static final Standard WIND_WAVE
-
WATER_WAVE
public static final Standard WATER_WAVE
-
EARTH_WAVE
public static final Standard EARTH_WAVE
-
FIRE_WAVE
public static final Standard FIRE_WAVE
-
WIND_SURGE
public static final Standard WIND_SURGE
-
WATER_SURGE
public static final Standard WATER_SURGE
-
EARTH_SURGE
public static final Standard EARTH_SURGE
-
FIRE_SURGE
public static final Standard FIRE_SURGE
-
SARADOMIN_STRIKE
public static final Standard SARADOMIN_STRIKE
-
CLAWS_OF_GUTHIX
public static final Standard CLAWS_OF_GUTHIX
-
FLAMES_OF_ZAMORAK
public static final Standard FLAMES_OF_ZAMORAK
-
CRUMBLE_UNDEAD
public static final Standard CRUMBLE_UNDEAD
-
IBAN_BLAST
public static final Standard IBAN_BLAST
-
MAGIC_DART
public static final Standard MAGIC_DART
-
CONFUSE
public static final Standard CONFUSE
-
WEAKEN
public static final Standard WEAKEN
-
CURSE
public static final Standard CURSE
-
BIND
public static final Standard BIND
-
SNARE
public static final Standard SNARE
-
VULNERABILITY
public static final Standard VULNERABILITY
-
ENFEEBLE
public static final Standard ENFEEBLE
-
ENTANGLE
public static final Standard ENTANGLE
-
STUN
public static final Standard STUN
-
TELE_BLOCK
public static final Standard TELE_BLOCK
-
CHARGE
public static final Standard CHARGE
-
BONES_TO_BANANAS
public static final Standard BONES_TO_BANANAS
-
LOW_LEVEL_ALCHEMY
public static final Standard LOW_LEVEL_ALCHEMY
-
SUPERHEAT_ITEM
public static final Standard SUPERHEAT_ITEM
-
HIGH_LEVEL_ALCHEMY
public static final Standard HIGH_LEVEL_ALCHEMY
-
BONES_TO_PEACHES
public static final Standard BONES_TO_PEACHES
-
LVL_1_ENCHANT
public static final Standard LVL_1_ENCHANT
-
LVL_2_ENCHANT
public static final Standard LVL_2_ENCHANT
-
LVL_3_ENCHANT
public static final Standard LVL_3_ENCHANT
-
CHARGE_WATER_ORB
public static final Standard CHARGE_WATER_ORB
-
LVL_4_ENCHANT
public static final Standard LVL_4_ENCHANT
-
CHARGE_EARTH_ORB
public static final Standard CHARGE_EARTH_ORB
-
CHARGE_FIRE_ORB
public static final Standard CHARGE_FIRE_ORB
-
CHARGE_AIR_ORB
public static final Standard CHARGE_AIR_ORB
-
LVL_5_ENCHANT
public static final Standard LVL_5_ENCHANT
-
LVL_6_ENCHANT
public static final Standard LVL_6_ENCHANT
-
LVL_7_ENCHANT
public static final Standard LVL_7_ENCHANT
-
TELEKINETIC_GRAB
public static final Standard TELEKINETIC_GRAB
-
-
Method Detail
-
values
public static Standard[] 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 (Standard c : Standard.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Standard 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
-
getAction
public int getAction()
- Specified by:
getActionin interfaceCastableSpell
-
-