public static enum Options.Algorithm extends Enum<Options.Algorithm>
| Enum Constant and Description |
|---|
DFA |
DFA_FALLBACK_TO_NFA |
NFA |
| Modifier and Type | Method and Description |
|---|---|
static Options.Algorithm |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Options.Algorithm[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Options.Algorithm DFA
public static final Options.Algorithm DFA_FALLBACK_TO_NFA
public static final Options.Algorithm NFA
public static Options.Algorithm[] values()
for (Options.Algorithm c : Options.Algorithm.values()) System.out.println(c);
public static Options.Algorithm 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 © 2016. All Rights Reserved.