public enum ExprConverter extends java.lang.Enum<ExprConverter>
| Enum Constant and Description |
|---|
All |
Bool |
Eq |
Exists |
In |
Missing |
Ne |
Text |
| Modifier and Type | Method and Description |
|---|---|
static org.elasticsearch.index.query.QueryBuilder |
buildFilter(Expression expr) |
static ExprConverter |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ExprConverter[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExprConverter All
public static final ExprConverter Bool
public static final ExprConverter Eq
public static final ExprConverter Ne
public static final ExprConverter In
public static final ExprConverter Text
public static final ExprConverter Exists
public static final ExprConverter Missing
public static ExprConverter[] values()
for (ExprConverter c : ExprConverter.values()) System.out.println(c);
public static ExprConverter 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 nullpublic static org.elasticsearch.index.query.QueryBuilder buildFilter(Expression expr)