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