public static enum Evoker.Spell extends Enum<Evoker.Spell>
| Enum Constant and 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 and Description | 
|---|---|
static Evoker.Spell | 
valueOf(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(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2016. All rights reserved.