static enum YaccParser.Token extends java.lang.Enum<YaccParser.Token>
Enum Constant and Description |
---|
ACTION_CODE |
PARTIAL_ACTION |
PREC |
SEPARATOR |
START |
TOKEN |
TOKENTYPE |
TYPE |
TYPEINFO |
Modifier and Type | Method and Description |
---|---|
static YaccParser.Token |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static YaccParser.Token[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final YaccParser.Token TOKENTYPE
public static final YaccParser.Token TYPE
public static final YaccParser.Token TYPEINFO
public static final YaccParser.Token TOKEN
public static final YaccParser.Token START
public static final YaccParser.Token SEPARATOR
public static final YaccParser.Token PREC
public static final YaccParser.Token PARTIAL_ACTION
public static final YaccParser.Token ACTION_CODE
public static YaccParser.Token[] values()
for (YaccParser.Token c : YaccParser.Token.values()) System.out.println(c);
public static YaccParser.Token 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 null