#594 ElasticSearch - Add match / TextExpression support - move expressions onto ExpressionList (remove TextExpressionList)

This commit is contained in:
Robin Bygrave
2016-03-18 12:51:39 +13:00
parent cb347ff5fa
commit 636acc61e5
16 changed files with 305 additions and 359 deletions
@@ -357,6 +357,6 @@ public interface ExpressionFactory {
* This is doc store Elastic only.
* </p>
*/
<T> TextJunction<T> textJunction(Query<T> query, TextExpressionList<T> parent, TextJunction.Type type);
<T> Junction<T> textJunction(Query<T> query, ExpressionList<T> parent, Junction.Type type);
}