public static enum Query.Parameter extends Enum<Query.Parameter>
| Enum Constant and Description |
|---|
DEFAULT_FIELD |
DEFAULT_OPERATOR |
FILTER |
FILTERS |
GT |
GTE |
LOWERCASE_EXPANDED_TERMS |
LT |
LTE |
MUST |
MUST_NOT |
OPERATOR |
QUERY |
SHOULD |
VALUE |
| Modifier and Type | Method and Description |
|---|---|
static Query.Parameter |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Query.Parameter[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Query.Parameter MUST
public static final Query.Parameter MUST_NOT
public static final Query.Parameter SHOULD
public static final Query.Parameter VALUE
public static final Query.Parameter QUERY
public static final Query.Parameter FILTER
public static final Query.Parameter FILTERS
public static final Query.Parameter GT
public static final Query.Parameter GTE
public static final Query.Parameter LT
public static final Query.Parameter LTE
public static final Query.Parameter DEFAULT_FIELD
public static final Query.Parameter DEFAULT_OPERATOR
public static final Query.Parameter LOWERCASE_EXPANDED_TERMS
public static final Query.Parameter OPERATOR
public static Query.Parameter[] values()
for (Query.Parameter c : Query.Parameter.values()) System.out.println(c);
public static Query.Parameter valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2017–2020 JBoss by Red Hat. All rights reserved.