public interface ExpressionList<T>
An ExpressionList is returned from Query.where().
The ExpressionList has a list of convenience methods that create the standard expressions and add them to this list.
The ExpressionList also duplicates methods that are found on the Query such as findList() and orderBy(). The purpose of these methods is provide a fluid API. The upside of this approach is that you can build and execute a query via chained methods. The down side is that this ExpressionList object has more methods than you would initially expect (the ones duplicated from Query).
Query.where()| Modifier and Type | Method and Description |
|---|---|
ExpressionList<T> |
add(Expression expr)
Add an Expression to the list.
|
ExpressionList<T> |
addAll(ExpressionList<T> exprList)
Add a list of Expressions to this ExpressionList.s
|
ExpressionList<T> |
allEq(Map<String,Object> propertyMap)
All Equal - Map containing property names and their values.
|
Junction<T> |
and()
Start a list of expressions that will be joined by AND's
returning the expression list the expressions are added to.
|
ExpressionList<T> |
and(Expression expOne,
Expression expTwo)
And - join two expressions with a logical and.
|
Query<T> |
apply(FetchPath fetchPath)
Apply the path properties to the query replacing the select and fetch clauses.
|
ExpressionList<T> |
arrayContains(String propertyName,
Object... values)
Array property contains entries with the given values.
|
ExpressionList<T> |
arrayIsEmpty(String propertyName)
Array is empty - for the given array property.
|
ExpressionList<T> |
arrayIsNotEmpty(String propertyName)
Array is not empty - for the given array property.
|
ExpressionList<T> |
arrayNotContains(String propertyName,
Object... values)
Array does not contain the given values.
|
Query<T> |
asDraft()
Execute the query against the draft set of tables.
|
Query<T> |
asOf(Timestamp asOf)
Perform an 'As of' query using history tables to return the object graph
as of a time in the past.
|
ExpressionList<T> |
between(String propertyName,
Object value1,
Object value2)
Between - property between the two given values.
|
ExpressionList<T> |
betweenProperties(String lowProperty,
String highProperty,
Object value)
Between - value between the two properties.
|
Junction<T> |
conjunction()
Start (and return) a list of expressions that will be joined by AND's.
|
ExpressionList<T> |
contains(String propertyName,
String value)
Contains - property like %value%.
|
int |
delete()
Execute as a delete query deleting the 'root level' beans that match the predicates
in the query.
|
Junction<T> |
disjunction()
Start (and return) a list of expressions that will be joined by OR's.
|
ExpressionList<T> |
endAnd()
End a AND junction - synonym for endJunction().
|
ExpressionList<T> |
endJunction()
End a junction returning the parent expression list.
|
ExpressionList<T> |
endNot()
End a NOT junction - synonym for endJunction().
|
ExpressionList<T> |
endOr()
End a AND junction - synonym for endJunction().
|
ExpressionList<T> |
endsWith(String propertyName,
String value)
Ends With - property like %value.
|
ExpressionList<T> |
eq(String propertyName,
Object value)
Equal To - property is equal to a given value.
|
ExpressionList<T> |
exampleLike(Object example)
A "Query By Example" type of expression.
|
ExpressionList<T> |
exists(Query<?> subQuery)
Exists expression
|
ExpressionList<T> |
filterMany(String prop)
Add some filter predicate expressions to the many property.
|
int |
findCount()
Return the count of entities this query should return.
|
void |
findEach(QueryEachConsumer<T> consumer)
Execute the query process the beans one at a time.
|
void |
findEachWhile(QueryEachWhileConsumer<T> consumer)
Execute the query processing the beans one at a time with the ability to
stop processing before reading all the beans.
|
FutureRowCount<T> |
findFutureCount()
Execute find row count query in a background thread.
|
FutureIds<T> |
findFutureIds()
Execute find Id's query in a background thread.
|
FutureList<T> |
findFutureList()
Execute find list query in a background thread.
|
FutureRowCount<T> |
findFutureRowCount()
Deprecated.
|
List<Object> |
findIds()
Execute the query returning the list of Id's.
|
List<T> |
findList()
Execute the query returning a list.
|
Map<?,T> |
findMap()
Execute the query returning a map.
|
<K> Map<K,T> |
findMap(String keyProperty,
Class<K> keyType)
Return a typed map specifying the key property and type.
|
PagedList<T> |
findPagedList()
Return a PagedList for this query using firstRow and maxRows.
|
int |
findRowCount()
Deprecated.
|
Set<T> |
findSet()
Execute the query returning a set.
|
T |
findUnique()
Execute the query returning a single bean or null (if no matching
bean is found).
|
List<Version<T>> |
findVersions()
Return versions of a @History entity bean.
|
List<Version<T>> |
findVersionsBetween(Timestamp start,
Timestamp end)
Return versions of a @History entity bean between the 2 timestamps.
|
ExpressionList<T> |
ge(String propertyName,
Object value)
Greater Than or Equal to - property greater than or equal to the given
value.
|
ExpressionList<T> |
gt(String propertyName,
Object value)
Greater Than - property greater than the given value.
|
ExpressionList<T> |
having()
Add expressions to the having clause.
|
ExpressionList<T> |
icontains(String propertyName,
String value)
Case insensitive Contains - property like %value%.
|
ExpressionList<T> |
idEq(Object value)
Id Equal to - ID property is equal to the value.
|
ExpressionList<T> |
idIn(List<?> idValues)
Id IN a list of id values.
|
ExpressionList<T> |
idIn(Object... idValues)
Id IN a list of id values.
|
ExpressionList<T> |
iendsWith(String propertyName,
String value)
Case insensitive Ends With - property like %value.
|
ExpressionList<T> |
ieq(String propertyName,
String value)
Case Insensitive Equal To - property equal to the given value (typically
using a lower() function to make it case insensitive).
|
ExpressionList<T> |
iexampleLike(Object example)
Case insensitive version of
exampleLike(Object) |
ExpressionList<T> |
ilike(String propertyName,
String value)
Case insensitive Like - property like value where the value contains the
SQL wild card characters % (percentage) and _ (underscore).
|
ExpressionList<T> |
in(String propertyName,
Collection<?> values)
In - property has a value in the collection of values.
|
ExpressionList<T> |
in(String propertyName,
Object... values)
In - property has a value in the array of values.
|
ExpressionList<T> |
in(String propertyName,
Query<?> subQuery)
In - using a subQuery.
|
Query<T> |
includeSoftDeletes()
Deprecated.
|
ExpressionList<T> |
isEmpty(String propertyName)
Is empty expression for collection properties.
|
ExpressionList<T> |
isNotEmpty(String propertyName)
Is not empty expression for collection properties.
|
ExpressionList<T> |
isNotNull(String propertyName)
Is Not Null - property is not null.
|
ExpressionList<T> |
isNull(String propertyName)
Is Null - property is null.
|
ExpressionList<T> |
istartsWith(String propertyName,
String value)
Case insensitive Starts With - property like value%.
|
ExpressionList<T> |
jsonBetween(String propertyName,
String path,
Object lowerValue,
Object upperValue)
Between - for the given path in a JSON document.
|
ExpressionList<T> |
jsonEqualTo(String propertyName,
String path,
Object value)
Equal to expression for the value at the given path in the JSON document.
|
ExpressionList<T> |
jsonExists(String propertyName,
String path)
Path exists - for the given path in a JSON document.
|
ExpressionList<T> |
jsonGreaterOrEqual(String propertyName,
String path,
Object value)
Greater than or equal to - for the given path in a JSON document.
|
ExpressionList<T> |
jsonGreaterThan(String propertyName,
String path,
Object value)
Greater than - for the given path in a JSON document.
|
ExpressionList<T> |
jsonLessOrEqualTo(String propertyName,
String path,
Object value)
Less than or equal to - for the given path in a JSON document.
|
ExpressionList<T> |
jsonLessThan(String propertyName,
String path,
Object value)
Less than - for the given path in a JSON document.
|
ExpressionList<T> |
jsonNotEqualTo(String propertyName,
String path,
Object value)
Not Equal to - for the given path in a JSON document.
|
ExpressionList<T> |
jsonNotExists(String propertyName,
String path)
Path does not exist - for the given path in a JSON document.
|
ExpressionList<T> |
le(String propertyName,
Object value)
Less Than or Equal to - property less than or equal to the given value.
|
ExpressionList<T> |
like(String propertyName,
String value)
Like - property like value where the value contains the SQL wild card
characters % (percentage) and _ (underscore).
|
ExpressionList<T> |
lt(String propertyName,
Object value)
Less Than - property less than the given value.
|
ExpressionList<T> |
match(String propertyName,
String search)
Add a match expression.
|
ExpressionList<T> |
match(String propertyName,
String search,
Match options)
Add a match expression with options.
|
ExpressionList<T> |
multiMatch(String search,
MultiMatch options)
Add a multi-match expression using options.
|
ExpressionList<T> |
multiMatch(String search,
String... properties)
Add a multi-match expression.
|
Junction<T> |
must()
Start a list of expressions that will be joined by MUST.
|
Junction<T> |
mustNot()
Start a list of expressions that will be joined by MUST NOT.
|
ExpressionList<T> |
ne(String propertyName,
Object value)
Not Equal To - property not equal to the given value.
|
Junction<T> |
not()
Return a list of expressions that will be wrapped by NOT.
|
ExpressionList<T> |
not(Expression exp)
Negate the expression (prefix it with NOT).
|
ExpressionList<T> |
notExists(Query<?> subQuery)
Not exists expression
|
ExpressionList<T> |
notIn(String propertyName,
Collection<?> values)
Not In - property has a value in the collection of values.
|
ExpressionList<T> |
notIn(String propertyName,
Object... values)
Not In - property has a value in the array of values.
|
ExpressionList<T> |
notIn(String propertyName,
Query<?> subQuery)
Not In - using a subQuery.
|
Junction<T> |
or()
Return a list of expressions that will be joined by OR's.
|
ExpressionList<T> |
or(Expression expOne,
Expression expTwo)
Or - join two expressions with a logical or.
|
OrderBy<T> |
order()
Return the OrderBy so that you can append an ascending or descending
property to the order by clause.
|
Query<T> |
order(String orderByClause)
Set the order by clause replacing the existing order by clause if there is
one.
|
OrderBy<T> |
orderBy()
Return the OrderBy so that you can append an ascending or descending
property to the order by clause.
|
Query<T> |
orderBy(String orderBy)
Add an orderBy clause to the query.
|
Query<T> |
query()
Return the query that owns this expression list.
|
ExpressionList<T> |
raw(String raw)
Add raw expression with no parameters.
|
ExpressionList<T> |
raw(String raw,
Object... values)
Add raw expression with an array of parameters.
|
ExpressionList<T> |
raw(String raw,
Object value)
Add raw expression with a single parameter.
|
Query<T> |
select(String properties)
Specify specific properties to fetch on the main/root bean (aka partial
object).
|
Query<T> |
setDisableLazyLoading(boolean disableLazyLoading)
Set true if you want to disable lazy loading.
|
Query<T> |
setDisableReadAuditing()
Disable read auditing for this query.
|
Query<T> |
setDistinct(boolean distinct)
Set whether this query uses DISTINCT.
|
Query<T> |
setFirstRow(int firstRow)
Set the first row to fetch.
|
Query<T> |
setIncludeSoftDeletes()
Execute the query including soft deleted rows.
|
Query<T> |
setMapKey(String mapKey)
Set the name of the property which values become the key of a map.
|
Query<T> |
setMaxRows(int maxRows)
Set the maximum number of rows to fetch.
|
Query<T> |
setOrderBy(String orderBy)
Add an orderBy clause to the query.
|
Query<T> |
setUseCache(boolean useCache)
Set to true to use the query for executing this query.
|
Query<T> |
setUseDocStore(boolean useDocsStore)
Set to true if this query should execute against the doc store.
|
Query<T> |
setUseQueryCache(boolean useCache)
Set to true to use the query for executing this query.
|
Junction<T> |
should()
Start a list of expressions that will be joined by SHOULD.
|
ExpressionList<T> |
startsWith(String propertyName,
String value)
Starts With - property like value%.
|
ExpressionList<T> |
textCommonTerms(String search,
TextCommonTerms options)
Add common terms expression.
|
ExpressionList<T> |
textQueryString(String search,
TextQueryString options)
Add a query string expression.
|
ExpressionList<T> |
textSimple(String search,
TextSimple options)
Add a simple query string expression.
|
int |
update()
Execute as a update query.
|
ExpressionList<T> |
where()
Add another expression to the where clause.
|
Query<T> query()
This is a convenience method solely to support a fluid API where the methods are chained together. Adding expressions returns this expression list and this method can be used after that to return back the original query so that further things can be added to it.
Query<T> order(String orderByClause)
This follows SQL syntax using commas between each property with the optional asc and desc keywords representing ascending and descending order respectively.
This is EXACTLY the same as orderBy(String).
OrderBy<T> order()
This will never return a null. If no order by clause exists then an 'empty' OrderBy object is returned.
OrderBy<T> orderBy()
This will never return a null. If no order by clause exists then an 'empty' OrderBy object is returned.
Query<T> orderBy(String orderBy)
Query.orderBy(String)Query<T> setOrderBy(String orderBy)
Query.orderBy(String)Query<T> apply(FetchPath fetchPath)
Query<T> asOf(Timestamp asOf)
To perform this query the DB must have underlying history tables.
asOf - the date time in the past at which you want to view the data@Deprecated Query<T> includeSoftDeletes()
Query<T> setIncludeSoftDeletes()
int delete()
Note that if the query includes joins then the generated delete statement may not be optimal depending on the database platform.
int update()
UpdateQueryvoid findEach(QueryEachConsumer<T> consumer)
Query.findEach(QueryEachConsumer)void findEachWhile(QueryEachWhileConsumer<T> consumer)
List<T> findList()
Query.findList()List<Object> findIds()
Query.findIds()int findCount()
This is the number of 'top level' or 'root level' entities.
int findRowCount()
Set<T> findSet()
Query.findSet()Map<?,T> findMap()
Query.findMap()<K> Map<K,T> findMap(String keyProperty, Class<K> keyType)
@Nullable T findUnique()
If more than 1 row is found for this query then a NonUniqueResultException is thrown.
javax.persistence.NonUniqueResultException - if more than one result was foundQuery.findUnique()FutureRowCount<T> findFutureCount()
This returns a Future object which can be used to cancel, check the execution status (isDone etc) and get the value (with or without a timeout).
FutureRowCount<T> findFutureRowCount()
FutureIds<T> findFutureIds()
This returns a Future object which can be used to cancel, check the execution status (isDone etc) and get the value (with or without a timeout).
FutureList<T> findFutureList()
This returns a Future object which can be used to cancel, check the execution status (isDone etc) and get the value (with or without a timeout).
PagedList<T> findPagedList()
The benefit of using this over findList() is that it provides functionality to get the total row count etc.
If maxRows is not set on the query prior to calling findPagedList() then a PersistenceException is thrown.
PagedList<Order> pagedList = Ebean.find(Order.class)
.setFirstRow(50)
.setMaxRows(20)
.findPagedList();
// fetch the total row count in the background
pagedList.loadRowCount();
List<Order> orders = pagedList.getList();
int totalRowCount = pagedList.getTotalRowCount();
Query.findPagedList()List<Version<T>> findVersions()
Generally this query is expected to be a find by id or unique predicates query. It will execute the query against the history returning the versions of the bean.
List<Version<T>> findVersionsBetween(Timestamp start, Timestamp end)
Generally this query is expected to be a find by id or unique predicates query. It will execute the query against the history returning the versions of the bean.
ExpressionList<T> filterMany(String prop)
Query<T> select(String properties)
Query.select(String)Query<T> setDistinct(boolean distinct)
The select() clause MUST be specified when setDistinct(true) is set. The reason for this is that generally ORM queries include the "id" property and this doesn't make sense for distinct queries.
List<Customer> customers =
Ebean.find(Customer.class)
.setDistinct(true)
.select("name") // only select the customer name
.findList();
Query<T> setFirstRow(int firstRow)
Query.setFirstRow(int)Query<T> setMaxRows(int maxRows)
Query.setMaxRows(int)Query<T> setMapKey(String mapKey)
Query.setMapKey(String)Query<T> setUseCache(boolean useCache)
Query.setUseCache(boolean)Query<T> setUseQueryCache(boolean useCache)
Query.setUseQueryCache(boolean)Query<T> setUseDocStore(boolean useDocsStore)
When setting this you may also consider disabling lazy loading.
Query<T> setDisableLazyLoading(boolean disableLazyLoading)
That is, once the object graph is returned further lazy loading is disabled.
Query<T> setDisableReadAuditing()
This is intended to be used when the query is not a user initiated query and instead part of the internal processing in an application to load a cache or document store etc. In these cases we don't want the query to be part of read auditing.
ExpressionList<T> having()
The having clause is only used for queries based on raw sql (via SqlSelect annotation etc).
ExpressionList<T> where()
ExpressionList<T> jsonExists(String propertyName, String path)
where().jsonExists("content", "path.other")
propertyName - the property that holds a JSON documentpath - the nested path in the JSON document in dot notationExpressionList<T> jsonNotExists(String propertyName, String path)
where().jsonNotExists("content", "path.other")
propertyName - the property that holds a JSON documentpath - the nested path in the JSON document in dot notationExpressionList<T> jsonEqualTo(String propertyName, String path, Object value)
where().jsonEqualTo("content", "path.other", 34)
propertyName - the property that holds a JSON documentpath - the nested path in the JSON document in dot notationvalue - the value used to test against the document path's valueExpressionList<T> jsonNotEqualTo(String propertyName, String path, Object value)
where().jsonNotEqualTo("content", "path.other", 34)
propertyName - the property that holds a JSON documentpath - the nested path in the JSON document in dot notationvalue - the value used to test against the document path's valueExpressionList<T> jsonGreaterThan(String propertyName, String path, Object value)
where().jsonGreaterThan("content", "path.other", 34)
ExpressionList<T> jsonGreaterOrEqual(String propertyName, String path, Object value)
where().jsonGreaterOrEqual("content", "path.other", 34)
ExpressionList<T> jsonLessThan(String propertyName, String path, Object value)
where().jsonLessThan("content", "path.other", 34)
ExpressionList<T> jsonLessOrEqualTo(String propertyName, String path, Object value)
where().jsonLessOrEqualTo("content", "path.other", 34)
ExpressionList<T> jsonBetween(String propertyName, String path, Object lowerValue, Object upperValue)
where().jsonBetween("content", "orderDate", lowerDateTime, upperDateTime)
ExpressionList<T> add(Expression expr)
This returns the list so that add() can be chained.
Query<Customer> query = Ebean.find(Customer.class);
query.where()
.like("name","Rob%")
.eq("status", Customer.ACTIVE);
List<Customer> list = query.findList();
...
ExpressionList<T> addAll(ExpressionList<T> exprList)
ExpressionList<T> eq(String propertyName, Object value)
ExpressionList<T> ne(String propertyName, Object value)
ExpressionList<T> ieq(String propertyName, String value)
ExpressionList<T> between(String propertyName, Object value1, Object value2)
ExpressionList<T> betweenProperties(String lowProperty, String highProperty, Object value)
ExpressionList<T> gt(String propertyName, Object value)
ExpressionList<T> ge(String propertyName, Object value)
ExpressionList<T> lt(String propertyName, Object value)
ExpressionList<T> le(String propertyName, Object value)
ExpressionList<T> isNull(String propertyName)
ExpressionList<T> isNotNull(String propertyName)
ExpressionList<T> exampleLike(Object example)
Pass in an example entity and for each non-null scalar properties an expression is added.
By Default this case sensitive, will ignore numeric zero values and will use a Like for string values (you must put in your own wildcards).
To get control over the options you can create an ExampleExpression and set those options such as case insensitive etc.
// create an example bean and set the properties
// with the query parameters you want
Customer example = new Customer();
example.setName("Rob%");
example.setNotes("%something%");
List<Customer> list = Ebean.find(Customer.class).where()
// pass the bean into the where() clause
.exampleLike(example)
// you can add other expressions to the same query
.gt("id", 2).findList();
Customer example = new Customer();
example.setName("Rob%");
example.setNotes("%something%");
// create a ExampleExpression with more control
ExampleExpression qbe = new ExampleExpression(example, true, LikeType.EQUAL_TO).includeZeros();
List<Customer> list = Ebean.find(Customer.class).where().add(qbe).findList();
ExpressionList<T> iexampleLike(Object example)
exampleLike(Object)ExpressionList<T> like(String propertyName, String value)
ExpressionList<T> ilike(String propertyName, String value)
ExpressionList<T> startsWith(String propertyName, String value)
ExpressionList<T> istartsWith(String propertyName, String value)
ExpressionList<T> endsWith(String propertyName, String value)
ExpressionList<T> iendsWith(String propertyName, String value)
ExpressionList<T> contains(String propertyName, String value)
ExpressionList<T> icontains(String propertyName, String value)
ExpressionList<T> in(String propertyName, Query<?> subQuery)
ExpressionList<T> in(String propertyName, Object... values)
ExpressionList<T> in(String propertyName, Collection<?> values)
ExpressionList<T> notIn(String propertyName, Object... values)
ExpressionList<T> notIn(String propertyName, Collection<?> values)
ExpressionList<T> notIn(String propertyName, Query<?> subQuery)
ExpressionList<T> isEmpty(String propertyName)
ExpressionList<T> isNotEmpty(String propertyName)
ExpressionList<T> exists(Query<?> subQuery)
ExpressionList<T> notExists(Query<?> subQuery)
ExpressionList<T> idIn(Object... idValues)
ExpressionList<T> idIn(List<?> idValues)
ExpressionList<T> idEq(Object value)
ExpressionList<T> allEq(Map<String,Object> propertyMap)
Expression where all the property names in the map are equal to the corresponding value.
propertyMap - a map keyed by property names.ExpressionList<T> arrayContains(String propertyName, Object... values)
ExpressionList<T> arrayNotContains(String propertyName, Object... values)
Array support is effectively limited to Postgres at this time.
ExpressionList<T> arrayIsEmpty(String propertyName)
Array support is effectively limited to Postgres at this time.
ExpressionList<T> arrayIsNotEmpty(String propertyName)
Array support is effectively limited to Postgres at this time.
ExpressionList<T> raw(String raw, Object value)
The raw expression should contain a single ? at the location of the parameter.
When properties in the clause are fully qualified as table-column names then they are not translated. logical property name names (not fully qualified) will still be translated to their physical name.
// use a database function
raw("add_days(orderDate, 10) < ?", someDate)
ExpressionList<T> raw(String raw, Object... values)
The raw expression should contain the same number of ? as there are parameters.
When properties in the clause are fully qualified as table-column names then they are not translated. logical property name names (not fully qualified) will still be translated to their physical name.
ExpressionList<T> raw(String raw)
When properties in the clause are fully qualified as table-column names then they are not translated. logical property name names (not fully qualified) will still be translated to their physical name.
raw("orderQty < shipQty")
ExpressionList<T> match(String propertyName, String search)
propertyName - The property name for the matchsearch - The search valueExpressionList<T> match(String propertyName, String search, Match options)
propertyName - The property name for the matchsearch - The search valueExpressionList<T> multiMatch(String search, String... properties)
ExpressionList<T> multiMatch(String search, MultiMatch options)
ExpressionList<T> textSimple(String search, TextSimple options)
ExpressionList<T> textQueryString(String search, TextQueryString options)
ExpressionList<T> textCommonTerms(String search, TextCommonTerms options)
ExpressionList<T> and(Expression expOne, Expression expTwo)
ExpressionList<T> or(Expression expOne, Expression expTwo)
ExpressionList<T> not(Expression exp)
Junction<T> and()
This is exactly the same as conjunction();
Use endAnd() or endJunction() to end the AND junction.
Note that a where() clause defaults to an AND junction so typically you only explicitly need to use the and() junction when it is nested inside an or() or not() junction.
// Example: Nested and()
Ebean.find(Customer.class)
.where()
.or()
.and() // nested and
.startsWith("name", "r")
.eq("anniversary", onAfter)
.endAnd()
.and()
.eq("status", Customer.Status.ACTIVE)
.gt("id", 0)
.endAnd()
.orderBy().asc("name")
.findList();
Junction<T> or()
Use endOr() or endJunction() to end the OR junction.
// Example: Use or() to join
// two nested and() expressions
Ebean.find(Customer.class)
.where()
.or()
.and()
.startsWith("name", "r")
.eq("anniversary", onAfter)
.endAnd()
.and()
.eq("status", Customer.Status.ACTIVE)
.gt("id", 0)
.endAnd()
.orderBy().asc("name")
.findList();
Junction<T> not()
Use endNot() or endJunction() to end expressions being added to the NOT expression list.
@{code
.where()
.not()
.gt("id", 1)
.eq("anniversary", onAfter)
.endNot()
}
@{code
// Example: nested not()
Ebean.find(Customer.class)
.where()
.eq("status", Customer.Status.ACTIVE)
.not()
.gt("id", 1)
.eq("anniversary", onAfter)
.endNot()
.orderBy()
.asc("name")
.findList();
}Junction<T> conjunction()
This is the same as and().
Junction<T> disjunction()
This is the same as or().
Junction<T> must()
This automatically makes the query a useDocStore(true) query that will execute against the document store (ElasticSearch etc).
This is logically similar to and().
Junction<T> should()
This automatically makes the query a useDocStore(true) query that will execute against the document store (ElasticSearch etc).
This is logically similar to or().
Junction<T> mustNot()
This automatically makes the query a useDocStore(true) query that will execute against the document store (ElasticSearch etc).
This is logically similar to not().
ExpressionList<T> endJunction()
Ends a and(), or(), not(), must(), mustNot() or should() junction such that you get the parent expression.
Alternatively you can always use where() to return the top level expression list.
ExpressionList<T> endAnd()
ExpressionList<T> endOr()
ExpressionList<T> endNot()
Copyright © 2016. All rights reserved.