#606 - Add not() as a junction expression (like and() and or()) to the query criteria API

This commit is contained in:
Robin Bygrave
2016-03-18 14:11:51 +13:00
parent 3ddd7099b5
commit 5de67e1939
8 changed files with 291 additions and 204 deletions
@@ -357,6 +357,6 @@ public interface ExpressionFactory {
* This is doc store Elastic only.
* </p>
*/
<T> Junction<T> textJunction(Query<T> query, ExpressionList<T> parent, Junction.Type type);
<T> Junction<T> junction(Junction.Type type, Query<T> query, ExpressionList<T> parent);
}