static enum Automaton.Status extends Enum<Automaton.Status>
| Enum Constant and Description |
|---|
LONG_OPTION |
SHORT_OPTION |
WHITESPACE |
WORD |
| Modifier and Type | Method and Description |
|---|---|
static Automaton.Status |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Automaton.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Automaton.Status WHITESPACE
public static final Automaton.Status WORD
public static final Automaton.Status SHORT_OPTION
public static final Automaton.Status LONG_OPTION
public static Automaton.Status[] values()
for (Automaton.Status c : Automaton.Status.values()) System.out.println(c);
public static Automaton.Status 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 © 2015 eXo Platform SAS. All Rights Reserved.