public enum CollisionObjectType extends Enum<CollisionObjectType>
| Enum Constant and Description |
|---|
COLLISION_OBJECT |
GHOST_OBJECT |
RIGID_BODY |
SOFT_BODY |
| Modifier and Type | Method and Description |
|---|---|
static CollisionObjectType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CollisionObjectType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CollisionObjectType COLLISION_OBJECT
public static final CollisionObjectType RIGID_BODY
public static final CollisionObjectType GHOST_OBJECT
public static final CollisionObjectType SOFT_BODY
public static CollisionObjectType[] values()
for (CollisionObjectType c : CollisionObjectType.values()) System.out.println(c);
public static CollisionObjectType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant
with the specified nameNullPointerException - if the argument is null