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