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