public enum Predicates extends Enum<Predicates>
| Enum Constant and Description |
|---|
gt |
gte |
lt |
lte |
not_term |
not_terms |
range |
term |
terms |
| Modifier and Type | Method and Description |
|---|---|
abstract void |
build(com.fasterxml.jackson.databind.node.ObjectNode targetNode,
String leftCol,
List<String> rightExps) |
static Predicates |
getFor(String hqlPredicate) |
static Predicates |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Predicates[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Predicates term
public static final Predicates not_term
public static final Predicates terms
public static final Predicates not_terms
public static final Predicates gt
public static final Predicates gte
public static final Predicates lt
public static final Predicates lte
public static final Predicates range
public static Predicates[] values()
for (Predicates c : Predicates.values()) System.out.println(c);
public static Predicates 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 nullpublic abstract void build(com.fasterxml.jackson.databind.node.ObjectNode targetNode,
String leftCol,
List<String> rightExps)
public static Predicates getFor(String hqlPredicate) throws InvalidQueryException
InvalidQueryExceptionCopyright © 2014–2015 Apache Software Foundation. All rights reserved.