| Enum Constant and Description |
|---|
CONSTANT_VOLUME |
DISTANCE |
FRICTION |
GEAR |
MOUSE |
PRISMATIC |
PULLEY |
REVOLUTE |
ROPE |
UNKNOWN |
WELD |
WHEEL |
| Modifier and Type | Method and Description |
|---|---|
static JointType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static JointType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JointType UNKNOWN
public static final JointType REVOLUTE
public static final JointType PRISMATIC
public static final JointType DISTANCE
public static final JointType PULLEY
public static final JointType MOUSE
public static final JointType GEAR
public static final JointType WHEEL
public static final JointType WELD
public static final JointType FRICTION
public static final JointType ROPE
public static final JointType CONSTANT_VOLUME
public static JointType[] values()
for (JointType c : JointType.values()) System.out.println(c);
public static JointType 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 nullCopyright © 2017. All Rights Reserved.