public enum RuneElement extends java.lang.Enum<RuneElement>
| Modifier and Type | Method and Description |
|---|---|
java.lang.String[] |
getAlternativeNames() |
int |
getCount() |
static RuneElement |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RuneElement[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RuneElement AIR
public static final RuneElement EARTH
public static final RuneElement FIRE
public static final RuneElement WATER
public static final RuneElement LAW
public static final RuneElement NATURE
public static RuneElement[] values()
for (RuneElement c : RuneElement.values()) System.out.println(c);
public static RuneElement 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 nullpublic java.lang.String[] getAlternativeNames()
public int getCount()