public static enum Settings.Field extends Enum<Settings.Field>
| Enum Constant and Description |
|---|
convergence |
discreteTails |
iterations |
parameterLearningLogging |
sampleSizeRanked |
settings |
simulationLogging |
tolerance |
| Modifier and Type | Method and Description |
|---|---|
static Settings.Field |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Settings.Field[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Settings.Field settings
public static final Settings.Field iterations
public static final Settings.Field convergence
public static final Settings.Field tolerance
public static final Settings.Field sampleSizeRanked
public static final Settings.Field discreteTails
public static final Settings.Field simulationLogging
public static final Settings.Field parameterLearningLogging
public static Settings.Field[] values()
for (Settings.Field c : Settings.Field.values()) System.out.println(c);
public static Settings.Field valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2021. All rights reserved.