public static enum Effects.Type extends java.lang.Enum<Effects.Type>
Enum Constant and Description |
---|
CHAIN |
DEATHSTROKE |
DEVOUR |
LIGHTNING |
RAY |
RIPPLE |
WOUND |
Modifier and Type | Method and Description |
---|---|
static Effects.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Effects.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Effects.Type RIPPLE
public static final Effects.Type LIGHTNING
public static final Effects.Type WOUND
public static final Effects.Type RAY
public static final Effects.Type CHAIN
public static final Effects.Type DEATHSTROKE
public static final Effects.Type DEVOUR
public static Effects.Type[] values()
for (Effects.Type c : Effects.Type.values()) System.out.println(c);
public static Effects.Type 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