Enum Arceuus
- java.lang.Object
-
- java.lang.Enum<Arceuus>
-
- com.kraken.api.service.magic.spellbook.Arceuus
-
- All Implemented Interfaces:
CastableSpell,java.io.Serializable,java.lang.Comparable<Arceuus>
public enum Arceuus extends java.lang.Enum<Arceuus> implements CastableSpell
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetAction()static ArceuusvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static 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.kraken.api.service.magic.CastableSpell
getIndex, getLevel, getName, getRuneRequirement, getSpellbook, getWidget, isCastable
-
-
-
-
Enum Constant Detail
-
ARCEUUS_HOME_TELEPORT
public static final Arceuus ARCEUUS_HOME_TELEPORT
-
BASIC_REANIMATION
public static final Arceuus BASIC_REANIMATION
-
ADEPT_REANIMATION
public static final Arceuus ADEPT_REANIMATION
-
EXPERT_REANIMATION
public static final Arceuus EXPERT_REANIMATION
-
MASTER_REANIMATION
public static final Arceuus MASTER_REANIMATION
-
ARCEUUS_LIBRARY_TELEPORT
public static final Arceuus ARCEUUS_LIBRARY_TELEPORT
-
DRAYNOR_MANOR_TELEPORT
public static final Arceuus DRAYNOR_MANOR_TELEPORT
-
BATTLEFRONT_TELEPORT
public static final Arceuus BATTLEFRONT_TELEPORT
-
MIND_ALTAR_TELEPORT
public static final Arceuus MIND_ALTAR_TELEPORT
-
RESPAWN_TELEPORT
public static final Arceuus RESPAWN_TELEPORT
-
SALVE_GRAVEYARD_TELEPORT
public static final Arceuus SALVE_GRAVEYARD_TELEPORT
-
FENKENSTRAINS_CASTLE_TELEPORT
public static final Arceuus FENKENSTRAINS_CASTLE_TELEPORT
-
WEST_ARDOUGNE_TELEPORT
public static final Arceuus WEST_ARDOUGNE_TELEPORT
-
HARMONY_ISLAND_TELEPORT
public static final Arceuus HARMONY_ISLAND_TELEPORT
-
CEMETERY_TELEPORT
public static final Arceuus CEMETERY_TELEPORT
-
BARROWS_TELEPORT
public static final Arceuus BARROWS_TELEPORT
-
APE_ATOLL_TELEPORT
public static final Arceuus APE_ATOLL_TELEPORT
-
GHOSTLY_GRASP
public static final Arceuus GHOSTLY_GRASP
-
SKELETAL_GRASP
public static final Arceuus SKELETAL_GRASP
-
UNDEAD_GRASP
public static final Arceuus UNDEAD_GRASP
-
INFERIOR_DEMONBANE
public static final Arceuus INFERIOR_DEMONBANE
-
SUPERIOR_DEMONBANE
public static final Arceuus SUPERIOR_DEMONBANE
-
DARK_DEMONBANE
public static final Arceuus DARK_DEMONBANE
-
LESSER_CORRUPTION
public static final Arceuus LESSER_CORRUPTION
-
GREATER_CORRUPTION
public static final Arceuus GREATER_CORRUPTION
-
RESURRECT_LESSER_GHOST
public static final Arceuus RESURRECT_LESSER_GHOST
-
RESURRECT_LESSER_SKELETON
public static final Arceuus RESURRECT_LESSER_SKELETON
-
RESURRECT_LESSER_ZOMBIE
public static final Arceuus RESURRECT_LESSER_ZOMBIE
-
RESURRECT_SUPERIOR_GHOST
public static final Arceuus RESURRECT_SUPERIOR_GHOST
-
RESURRECT_SUPERIOR_SKELETON
public static final Arceuus RESURRECT_SUPERIOR_SKELETON
-
RESURRECT_SUPERIOR_ZOMBIE
public static final Arceuus RESURRECT_SUPERIOR_ZOMBIE
-
RESURRECT_GREATER_GHOST
public static final Arceuus RESURRECT_GREATER_GHOST
-
RESURRECT_GREATER_SKELETON
public static final Arceuus RESURRECT_GREATER_SKELETON
-
RESURRECT_GREATER_ZOMBIE
public static final Arceuus RESURRECT_GREATER_ZOMBIE
-
DARK_LURE
public static final Arceuus DARK_LURE
-
MARK_OF_DARKNESS
public static final Arceuus MARK_OF_DARKNESS
-
WARD_OF_ARCEUUS
public static final Arceuus WARD_OF_ARCEUUS
-
DEMONIC_OFFERING
public static final Arceuus DEMONIC_OFFERING
-
SINISTER_OFFERING
public static final Arceuus SINISTER_OFFERING
-
SHADOW_VEIL
public static final Arceuus SHADOW_VEIL
-
VILE_VIGOUR
public static final Arceuus VILE_VIGOUR
-
DEGRIME
public static final Arceuus DEGRIME
-
RESURRECT_CROPS
public static final Arceuus RESURRECT_CROPS
-
DEATH_CHARGE
public static final Arceuus DEATH_CHARGE
-
-
Method Detail
-
values
public static 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 (Arceuus c : 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 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
-
getAction
public int getAction()
- Specified by:
getActionin interfaceCastableSpell
-
-