public enum SymbolNodeType extends java.lang.Enum<SymbolNodeType>
Symbol tree node type.
| Enum Constant and Description |
|---|
SYMBOL_GROUP
Group node.
|
SYMBOL_NODE
Leaf node, that is symbol.
|
| Modifier and Type | Method and Description |
|---|---|
static SymbolNodeType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SymbolNodeType[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared.
|
public static final SymbolNodeType SYMBOL_GROUP
Group node.
public static final SymbolNodeType SYMBOL_NODE
Leaf node, that is symbol.
public static SymbolNodeType[] values()
for (SymbolNodeType c : SymbolNodeType.values())
System.out.println(c);
public static SymbolNodeType 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