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