Enum Ancient
- java.lang.Object
-
- java.lang.Enum<Ancient>
-
- net.eternalclient.api.wrappers.magic.spellbooks.Ancient
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getAutocastValue()
int
getIndex()
int
getRequiredLevel()
java.util.HashMap<Rune,java.lang.Integer>
getRequiredRunes()
SpellBook
getSpellBook()
boolean
isAutocasting()
boolean
requiresTarget()
static Ancient
valueOf(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 net.eternalclient.api.wrappers.magic.Spell
getOpcode, getPrettyName, getWidgetChild
-
-
-
-
Enum Constant Detail
-
ICE_RUSH
public static final Ancient ICE_RUSH
-
ICE_BLITZ
public static final Ancient ICE_BLITZ
-
ICE_BURST
public static final Ancient ICE_BURST
-
ICE_BARRAGE
public static final Ancient ICE_BARRAGE
-
BLOOD_RUSH
public static final Ancient BLOOD_RUSH
-
BLOOD_BLITZ
public static final Ancient BLOOD_BLITZ
-
BLOOD_BURST
public static final Ancient BLOOD_BURST
-
BLOOD_BARRAGE
public static final Ancient BLOOD_BARRAGE
-
SMOKE_RUSH
public static final Ancient SMOKE_RUSH
-
SMOKE_BLITZ
public static final Ancient SMOKE_BLITZ
-
SMOKE_BURST
public static final Ancient SMOKE_BURST
-
SMOKE_BARRAGE
public static final Ancient SMOKE_BARRAGE
-
SHADOW_RUSH
public static final Ancient SHADOW_RUSH
-
SHADOW_BLITZ
public static final Ancient SHADOW_BLITZ
-
SHADOW_BURST
public static final Ancient SHADOW_BURST
-
SHADOW_BARRAGE
public static final Ancient SHADOW_BARRAGE
-
PADEWWA_TELEPORT
public static final Ancient PADEWWA_TELEPORT
-
SENNTISTEN_TELEPORT
public static final Ancient SENNTISTEN_TELEPORT
-
KHARYRLL_TELEPORT
public static final Ancient KHARYRLL_TELEPORT
-
LASSAR_TELEPORT
public static final Ancient LASSAR_TELEPORT
-
DAREEYAK_TELEPORT
public static final Ancient DAREEYAK_TELEPORT
-
CARRALLANGAR_TELEPORT
public static final Ancient CARRALLANGAR_TELEPORT
-
ANNAKARL_TELEPORT
public static final Ancient ANNAKARL_TELEPORT
-
GHORROCK_TELEPORT
public static final Ancient GHORROCK_TELEPORT
-
HOME_TELEPORT
public static final Ancient HOME_TELEPORT
-
TELEPORT_TO_TARGET
public static final Ancient TELEPORT_TO_TARGET
-
-
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
-
getSpellBook
public SpellBook getSpellBook()
- Specified by:
getSpellBook
in interfaceSpell
-
getRequiredLevel
public int getRequiredLevel()
- Specified by:
getRequiredLevel
in interfaceSpell
-
requiresTarget
public boolean requiresTarget()
- Specified by:
requiresTarget
in interfaceSpell
-
getRequiredRunes
public java.util.HashMap<Rune,java.lang.Integer> getRequiredRunes()
- Specified by:
getRequiredRunes
in interfaceSpell
-
isAutocasting
public boolean isAutocasting()
- Specified by:
isAutocasting
in interfaceSpell
-
getAutocastValue
public int getAutocastValue()
- Specified by:
getAutocastValue
in interfaceSpell
-
-