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