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