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