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