public static enum NFA.EventKind extends Enum<NFA.EventKind>
Enum Constant and Description |
---|
ON_CHARS
Some char is read in from a character set
|
TO_ACTION
A final state is reached: a semantic action must be performed
|
Modifier and Type | Method and Description |
---|---|
static NFA.EventKind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NFA.EventKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NFA.EventKind ON_CHARS
public static final NFA.EventKind TO_ACTION
public static NFA.EventKind[] values()
for (NFA.EventKind c : NFA.EventKind.values()) System.out.println(c);
public static NFA.EventKind 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 null