public static enum QueryTreeContext.Kind extends java.lang.Enum<QueryTreeContext.Kind>
Enum Constant and Description |
---|
EXPRESSION |
FIELD |
FUNCTION |
LITERAL |
PHRASE |
VOID |
Modifier and Type | Method and Description |
---|---|
static QueryTreeContext.Kind |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static QueryTreeContext.Kind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final QueryTreeContext.Kind VOID
public static final QueryTreeContext.Kind LITERAL
public static final QueryTreeContext.Kind PHRASE
public static final QueryTreeContext.Kind FIELD
public static final QueryTreeContext.Kind FUNCTION
public static final QueryTreeContext.Kind EXPRESSION
public static QueryTreeContext.Kind[] values()
for (QueryTreeContext.Kind c : QueryTreeContext.Kind.values()) System.out.println(c);
public static QueryTreeContext.Kind 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