public static enum ConjugateGradient.ProgressLevel extends java.lang.Enum<ConjugateGradient.ProgressLevel>
Enum Constant and Description |
---|
DETAIL
Output lots of information - including direction vectors etc
|
LIKELIHOOD
Output just the likelihood after each itteration
|
NONE
No output
|
PARAMETERS
Output the likeihood and parameter values after each itteration
|
Modifier and Type | Method and Description |
---|---|
static ConjugateGradient.ProgressLevel |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ConjugateGradient.ProgressLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConjugateGradient.ProgressLevel NONE
public static final ConjugateGradient.ProgressLevel LIKELIHOOD
public static final ConjugateGradient.ProgressLevel PARAMETERS
public static final ConjugateGradient.ProgressLevel DETAIL
public static ConjugateGradient.ProgressLevel[] values()
for (ConjugateGradient.ProgressLevel c : ConjugateGradient.ProgressLevel.values()) System.out.println(c);
public static ConjugateGradient.ProgressLevel 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