public static enum Evoker.Spell extends java.lang.Enum<Evoker.Spell>
| Enum Constant | Description |
|---|---|
FANGS |
The spell that summons Fangs.
|
NONE |
No spell is being evoked.
|
SUMMON |
The spell that summons Vexes.
|
WOLOLO |
The "wololo" spell.
|
| Modifier and Type | Method | Description |
|---|---|---|
static Evoker.Spell |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static Evoker.Spell[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Evoker.Spell NONE
public static final Evoker.Spell SUMMON
public static final Evoker.Spell FANGS
public static final Evoker.Spell WOLOLO
public static Evoker.Spell[] values()
for (Evoker.Spell c : Evoker.Spell.values()) System.out.println(c);
public static Evoker.Spell valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null