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