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