public static enum GoldenSection.ProgressLevel extends java.lang.Enum<GoldenSection.ProgressLevel>
Enum Constant and Description |
---|
CALCULATION
Output value and likelihood for every likelihood calculation
|
NONE
No output
|
PARAMETER
Output new value and likelihood every time a parameter is optimised
|
Modifier and Type | Method and Description |
---|---|
static GoldenSection.ProgressLevel |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static GoldenSection.ProgressLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GoldenSection.ProgressLevel NONE
public static final GoldenSection.ProgressLevel PARAMETER
public static final GoldenSection.ProgressLevel CALCULATION
public static GoldenSection.ProgressLevel[] values()
for (GoldenSection.ProgressLevel c : GoldenSection.ProgressLevel.values()) System.out.println(c);
public static GoldenSection.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