public static enum Level.Feeling extends java.lang.Enum<Level.Feeling>
| Modifier and Type | Method and Description |
|---|---|
static Level.Feeling |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Level.Feeling[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Level.Feeling NONE
public static final Level.Feeling CHASM
public static final Level.Feeling WATER
public static final Level.Feeling GRASS
public static final Level.Feeling UNDEFINED
public static Level.Feeling[] values()
for (Level.Feeling c : Level.Feeling.values()) System.out.println(c);
public static Level.Feeling 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