public enum KinematicSubmode extends java.lang.Enum<KinematicSubmode>
This class is shared between JBullet and Native Bullet.
| Enum Constant and Description | 
|---|
| Animateddriven by animation (if any) | 
| Frozenfrozen in the transform it had when blending started | 
| Modifier and Type | Method and Description | 
|---|---|
| static KinematicSubmode | valueOf(java.lang.String name)Returns the enum constant of this type with the specified name. | 
| static KinematicSubmode[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final KinematicSubmode Animated
public static final KinematicSubmode Frozen
public static KinematicSubmode[] values()
for (KinematicSubmode c : KinematicSubmode.values()) System.out.println(c);
public static KinematicSubmode 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