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