public static enum AbstractParseTreeConstructor.AssignmentType extends java.lang.Enum<AbstractParseTreeConstructor.AssignmentType>
| Enum Constant and Description |
|---|
CROSS_REFERENCE |
DATATYPE_RULE_CALL |
ENUM_RULE_CALL |
KEYWORD |
PARSER_RULE_CALL |
TERMINAL_RULE_CALL |
| Modifier and Type | Method and Description |
|---|---|
static AbstractParseTreeConstructor.AssignmentType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AbstractParseTreeConstructor.AssignmentType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AbstractParseTreeConstructor.AssignmentType CROSS_REFERENCE
public static final AbstractParseTreeConstructor.AssignmentType DATATYPE_RULE_CALL
public static final AbstractParseTreeConstructor.AssignmentType ENUM_RULE_CALL
public static final AbstractParseTreeConstructor.AssignmentType KEYWORD
public static final AbstractParseTreeConstructor.AssignmentType PARSER_RULE_CALL
public static final AbstractParseTreeConstructor.AssignmentType TERMINAL_RULE_CALL
public static AbstractParseTreeConstructor.AssignmentType[] values()
for (AbstractParseTreeConstructor.AssignmentType c : AbstractParseTreeConstructor.AssignmentType.values()) System.out.println(c);
public static AbstractParseTreeConstructor.AssignmentType 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