| Enum Constant and Description |
|---|
EXPRESSION |
MEMBER |
PATTERN |
STATEMENT |
TOKEN |
TYPE_DECLARATION |
TYPE_REFERENCE |
UNKNOWN |
WHITESPACE |
| Modifier and Type | Method and Description |
|---|---|
static NodeType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static NodeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NodeType UNKNOWN
public static final NodeType TYPE_REFERENCE
public static final NodeType TYPE_DECLARATION
public static final NodeType MEMBER
public static final NodeType STATEMENT
public static final NodeType EXPRESSION
public static final NodeType TOKEN
public static final NodeType WHITESPACE
public static final NodeType PATTERN
public static NodeType[] values()
for (NodeType c : NodeType.values()) System.out.println(c);
public static NodeType 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