Package com.epicbot.api.shared.model
Enum Spell.Arceuus
- java.lang.Object
-
- java.lang.Enum<Spell.Arceuus>
-
- com.epicbot.api.shared.model.Spell.Arceuus
-
- All Implemented Interfaces:
Spell
,java.io.Serializable
,java.lang.Comparable<Spell.Arceuus>
- Enclosing interface:
- Spell
public static enum Spell.Arceuus extends java.lang.Enum<Spell.Arceuus> 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.Arceuus
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static Spell.Arceuus[]
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_ARCEUUS
public static final Spell.Arceuus HOME_TELEPORT_ARCEUUS
-
WEST_ARDOUGNE_TELEPORT
public static final Spell.Arceuus WEST_ARDOUGNE_TELEPORT
-
DRAYNOR_MANOR_TELEPORT
public static final Spell.Arceuus DRAYNOR_MANOR_TELEPORT
-
REANIMATE_TZHAAR
public static final Spell.Arceuus REANIMATE_TZHAAR
-
REANIMATE_DEMON
public static final Spell.Arceuus REANIMATE_DEMON
-
BARROWS_TELEPORT
public static final Spell.Arceuus BARROWS_TELEPORT
-
REANIMATE_GOBLIN
public static final Spell.Arceuus REANIMATE_GOBLIN
-
RESPAWN_TELEPORT
public static final Spell.Arceuus RESPAWN_TELEPORT
-
FENKENSTRAINS_CASTLE_TELEPORT
public static final Spell.Arceuus FENKENSTRAINS_CASTLE_TELEPORT
-
REANIMATE_BLOODVELD
public static final Spell.Arceuus REANIMATE_BLOODVELD
-
REANIMATE_DRAGON
public static final Spell.Arceuus REANIMATE_DRAGON
-
REANIMATE_BEAR
public static final Spell.Arceuus REANIMATE_BEAR
-
REANIMATE_ELF
public static final Spell.Arceuus REANIMATE_ELF
-
REANIMATE_CHAOS_DRUID
public static final Spell.Arceuus REANIMATE_CHAOS_DRUID
-
SALVE_GRAVEYARD_TELEPORT
public static final Spell.Arceuus SALVE_GRAVEYARD_TELEPORT
-
REANIMATE_DAGANNOTH
public static final Spell.Arceuus REANIMATE_DAGANNOTH
-
REANIMATE_MONKEY
public static final Spell.Arceuus REANIMATE_MONKEY
-
REANIMATE_DOG
public static final Spell.Arceuus REANIMATE_DOG
-
REANIMATE_AVIANSIE
public static final Spell.Arceuus REANIMATE_AVIANSIE
-
REANIMATE_HORROR
public static final Spell.Arceuus REANIMATE_HORROR
-
LUMBRIDGE_GRAVEYARD_TELEPORT
public static final Spell.Arceuus LUMBRIDGE_GRAVEYARD_TELEPORT
-
REANIMATE_GIANT
public static final Spell.Arceuus REANIMATE_GIANT
-
REANIMATE_KALPHITE
public static final Spell.Arceuus REANIMATE_KALPHITE
-
HARMONY_ISLAND_TELEPORT
public static final Spell.Arceuus HARMONY_ISLAND_TELEPORT
-
BATTLEFRONT_TELEPORT
public static final Spell.Arceuus BATTLEFRONT_TELEPORT
-
REANIMATE_SCORPION
public static final Spell.Arceuus REANIMATE_SCORPION
-
REANIMATE_MINOTAUR
public static final Spell.Arceuus REANIMATE_MINOTAUR
-
REANIMATE_ABYSSAL_CREATURE
public static final Spell.Arceuus REANIMATE_ABYSSAL_CREATURE
-
REANIMATE_TROLL
public static final Spell.Arceuus REANIMATE_TROLL
-
RESURRECT_CROPS
public static final Spell.Arceuus RESURRECT_CROPS
-
MIND_ALTAR_TELEPORT
public static final Spell.Arceuus MIND_ALTAR_TELEPORT
-
CEMETERY_TELEPORT
public static final Spell.Arceuus CEMETERY_TELEPORT
-
REANIMATE_IMP
public static final Spell.Arceuus REANIMATE_IMP
-
REANIMATE_OGRE
public static final Spell.Arceuus REANIMATE_OGRE
-
REANIMATE_UNICORN
public static final Spell.Arceuus REANIMATE_UNICORN
-
APE_ATOLL_TELEPORT_ARCEUUS
public static final Spell.Arceuus APE_ATOLL_TELEPORT_ARCEUUS
-
-
Method Detail
-
values
public static Spell.Arceuus[] 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.Arceuus c : Spell.Arceuus.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.Arceuus 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
-
-