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