public static enum Corrector.AlgorithmStrategy extends java.lang.Enum<Corrector.AlgorithmStrategy>
Enum Constant and Description |
---|
DEFAULT
Algorithm strategy: default (direct construction).
|
EXPLORE
Algorithm strategy: explore (dynamic exploration).
|
REFINE
Algorithm strategy: refine (continuous refinement).
|
Modifier and Type | Field and Description |
---|---|
java.lang.String |
codeName
Code name of the algorithm strategy.
|
java.lang.String |
fullName
Full name of the algorithm strategy.
|
Modifier and Type | Method and Description |
---|---|
static Corrector.AlgorithmStrategy |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Corrector.AlgorithmStrategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Corrector.AlgorithmStrategy DEFAULT
public static final Corrector.AlgorithmStrategy EXPLORE
public static final Corrector.AlgorithmStrategy REFINE
public final java.lang.String codeName
public final java.lang.String fullName
public static Corrector.AlgorithmStrategy[] values()
for (Corrector.AlgorithmStrategy c : Corrector.AlgorithmStrategy.values()) System.out.println(c);
public static Corrector.AlgorithmStrategy 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