public static enum AttributeDict.DictType extends Enum<AttributeDict.DictType>
Enum Constant and Description |
---|
ARG |
LOCAL |
PREDEFINED_LEXER_RULE |
PREDEFINED_RULE |
RET |
TOKEN |
Modifier and Type | Method and Description |
---|---|
static AttributeDict.DictType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AttributeDict.DictType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AttributeDict.DictType ARG
public static final AttributeDict.DictType RET
public static final AttributeDict.DictType LOCAL
public static final AttributeDict.DictType TOKEN
public static final AttributeDict.DictType PREDEFINED_RULE
public static final AttributeDict.DictType PREDEFINED_LEXER_RULE
public static AttributeDict.DictType[] values()
for (AttributeDict.DictType c : AttributeDict.DictType.values()) System.out.println(c);
public static AttributeDict.DictType 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 © 1992–2020 ANTLR. All rights reserved.