public static enum BulletAppState.ThreadingType extends java.lang.Enum<BulletAppState.ThreadingType>
| Enum Constant and Description | 
|---|
| PARALLELParallel threaded mode: physics update and rendering are executed in
 parallel, update order is maintained. | 
| SEQUENTIALDefault mode: user update, physics update, and rendering happen
 sequentially. | 
| Modifier and Type | Method and Description | 
|---|---|
| static BulletAppState.ThreadingType | valueOf(java.lang.String name)Returns the enum constant of this type with the specified name. | 
| static BulletAppState.ThreadingType[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final BulletAppState.ThreadingType SEQUENTIAL
public static final BulletAppState.ThreadingType PARALLEL
public static BulletAppState.ThreadingType[] values()
for (BulletAppState.ThreadingType c : BulletAppState.ThreadingType.values()) System.out.println(c);
public static BulletAppState.ThreadingType 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