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