public enum FitAlgorithm extends java.lang.Enum<FitAlgorithm>
Enum Constant and Description |
---|
LM |
MCMC |
MULTIRUNLM |
Modifier and Type | Method and Description |
---|---|
static FitAlgorithm |
getFitAlgorithm(java.lang.String fitAlgString) |
static FitAlgorithm |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FitAlgorithm[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FitAlgorithm LM
public static final FitAlgorithm MULTIRUNLM
public static final FitAlgorithm MCMC
public static FitAlgorithm[] values()
for (FitAlgorithm c : FitAlgorithm.values()) System.out.println(c);
public static FitAlgorithm 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 static final FitAlgorithm getFitAlgorithm(java.lang.String fitAlgString)