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