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