| Enum Constant and Description |
|---|
Absolute |
Categorical |
Hinge |
Huber |
Logistic |
Ordinal |
Periodic |
Poisson |
Quadratic |
| Modifier and Type | Method and Description |
|---|---|
static GLRMLoss |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static GLRMLoss[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GLRMLoss Absolute
public static final GLRMLoss Categorical
public static final GLRMLoss Hinge
public static final GLRMLoss Huber
public static final GLRMLoss Logistic
public static final GLRMLoss Ordinal
public static final GLRMLoss Periodic
public static final GLRMLoss Poisson
public static final GLRMLoss Quadratic
public static GLRMLoss[] values()
for (GLRMLoss c : GLRMLoss.values()) System.out.println(c);
public static GLRMLoss 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