Package com.epicbot.api.shared.model
Enum Spell.Ancient
- java.lang.Object
-
- java.lang.Enum<Spell.Ancient>
-
- com.epicbot.api.shared.model.Spell.Ancient
-
- All Implemented Interfaces:
Spell
,java.io.Serializable
,java.lang.Comparable<Spell.Ancient>
- Enclosing interface:
- Spell
public static enum Spell.Ancient extends java.lang.Enum<Spell.Ancient> implements Spell
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface com.epicbot.api.shared.model.Spell
Spell.Ancient, Spell.Arceuus, Spell.Book, Spell.Lunar, Spell.Modern
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getAutoCastVar()
Spell.Book
getBook()
int
getDisabledMaterialId()
double
getExperience()
int
getLevelRequired()
int
getMaxHit()
java.lang.String
getSpellName()
static Spell.Ancient
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static Spell.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.epicbot.api.shared.model.Spell
getName, getWidgetChild
-
-
-
-
Enum Constant Detail
-
HOME_TELEPORT_ANCIENT
public static final Spell.Ancient HOME_TELEPORT_ANCIENT
-
SMOKE_RUSH
public static final Spell.Ancient SMOKE_RUSH
-
SHADOW_RUSH
public static final Spell.Ancient SHADOW_RUSH
-
PADDEWWA_TELEPORT
public static final Spell.Ancient PADDEWWA_TELEPORT
-
BLOOD_RUSH
public static final Spell.Ancient BLOOD_RUSH
-
ICE_RUSH
public static final Spell.Ancient ICE_RUSH
-
SENNTISTEN_TELEPORT
public static final Spell.Ancient SENNTISTEN_TELEPORT
-
SMOKE_BURST
public static final Spell.Ancient SMOKE_BURST
-
SHADOW_BURST
public static final Spell.Ancient SHADOW_BURST
-
KHARYLL_TELEPORT
public static final Spell.Ancient KHARYLL_TELEPORT
-
BLOOD_BURST
public static final Spell.Ancient BLOOD_BURST
-
ICE_BURST
public static final Spell.Ancient ICE_BURST
-
LASSAR_TELEPORT
public static final Spell.Ancient LASSAR_TELEPORT
-
SMOKE_BLITZ
public static final Spell.Ancient SMOKE_BLITZ
-
SHADOW_BLITZ
public static final Spell.Ancient SHADOW_BLITZ
-
DAREEYAK_TELEPORT
public static final Spell.Ancient DAREEYAK_TELEPORT
-
BLOOD_BLITZ
public static final Spell.Ancient BLOOD_BLITZ
-
ICE_BLITZ
public static final Spell.Ancient ICE_BLITZ
-
CARRALLANGAR_TELEPORT
public static final Spell.Ancient CARRALLANGAR_TELEPORT
-
TELEPORT_TO_TARGET
public static final Spell.Ancient TELEPORT_TO_TARGET
-
SMOKE_BARRAGE
public static final Spell.Ancient SMOKE_BARRAGE
-
SHADOW_BARRAGE
public static final Spell.Ancient SHADOW_BARRAGE
-
ANNAKARL_TELEPORT
public static final Spell.Ancient ANNAKARL_TELEPORT
-
BLOOD_BARRAGE
public static final Spell.Ancient BLOOD_BARRAGE
-
ICE_BARRAGE
public static final Spell.Ancient ICE_BARRAGE
-
GHORROCK_TELEPORT
public static final Spell.Ancient GHORROCK_TELEPORT
-
-
Method Detail
-
values
public static Spell.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 (Spell.Ancient c : Spell.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 Spell.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
-
getBook
public Spell.Book getBook()
-
getLevelRequired
public int getLevelRequired()
- Specified by:
getLevelRequired
in interfaceSpell
-
getExperience
public double getExperience()
- Specified by:
getExperience
in interfaceSpell
-
getSpellName
public java.lang.String getSpellName()
- Specified by:
getSpellName
in interfaceSpell
-
getAutoCastVar
public int getAutoCastVar()
- Specified by:
getAutoCastVar
in interfaceSpell
-
getDisabledMaterialId
public int getDisabledMaterialId()
- Specified by:
getDisabledMaterialId
in interfaceSpell
-
-