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