public static enum MechSystemSolver.PosStabilization extends java.lang.Enum<MechSystemSolver.PosStabilization>
Enum Constant and Description |
---|
GlobalMass
Use only the mass matrix.
|
GlobalStiffness
Use the combined mass-stiffness matrix.
|
None
No stabilization.
|
Modifier and Type | Method and Description |
---|---|
static MechSystemSolver.PosStabilization |
fromString(java.lang.String str) |
static MechSystemSolver.PosStabilization |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MechSystemSolver.PosStabilization[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MechSystemSolver.PosStabilization GlobalMass
public static final MechSystemSolver.PosStabilization GlobalStiffness
public static final MechSystemSolver.PosStabilization None
public static MechSystemSolver.PosStabilization[] values()
for (MechSystemSolver.PosStabilization c : MechSystemSolver.PosStabilization.values()) System.out.println(c);
public static MechSystemSolver.PosStabilization 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 nullpublic static MechSystemSolver.PosStabilization fromString(java.lang.String str)