Enum Ancient
- java.lang.Object
-
- java.lang.Enum<Ancient>
-
- com.kraken.api.service.magic.spellbook.Ancient
-
- All Implemented Interfaces:
CastableSpell,java.io.Serializable,java.lang.Comparable<Ancient>
public enum Ancient extends java.lang.Enum<Ancient> implements CastableSpell
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetAction()static AncientvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static Ancient[]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
-
EDGEVILLE_HOME_TELEPORT
public static final Ancient EDGEVILLE_HOME_TELEPORT
-
SMOKE_RUSH
public static final Ancient SMOKE_RUSH
-
SHADOW_RUSH
public static final Ancient SHADOW_RUSH
-
BLOOD_RUSH
public static final Ancient BLOOD_RUSH
-
ICE_RUSH
public static final Ancient ICE_RUSH
-
SMOKE_BURST
public static final Ancient SMOKE_BURST
-
SHADOW_BURST
public static final Ancient SHADOW_BURST
-
BLOOD_BURST
public static final Ancient BLOOD_BURST
-
ICE_BURST
public static final Ancient ICE_BURST
-
SMOKE_BLITZ
public static final Ancient SMOKE_BLITZ
-
SHADOW_BLITZ
public static final Ancient SHADOW_BLITZ
-
BLOOD_BLITZ
public static final Ancient BLOOD_BLITZ
-
ICE_BLITZ
public static final Ancient ICE_BLITZ
-
SMOKE_BARRAGE
public static final Ancient SMOKE_BARRAGE
-
SHADOW_BARRAGE
public static final Ancient SHADOW_BARRAGE
-
BLOOD_BARRAGE
public static final Ancient BLOOD_BARRAGE
-
ICE_BARRAGE
public static final Ancient ICE_BARRAGE
-
PADDEWWA_TELEPORT
public static final Ancient PADDEWWA_TELEPORT
-
SENNTISTEN_TELEPORT
public static final Ancient SENNTISTEN_TELEPORT
-
GHORROCK_TELEPORT
public static final Ancient GHORROCK_TELEPORT
-
-
Method Detail
-
values
public static Ancient[] 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 (Ancient c : Ancient.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Ancient 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
-
-