Class CompoundQueryAbstractBuilder<T extends CompoundQueryAbstractBuilder<T>>
- java.lang.Object
-
- com.lucidworks.search.dsl.request.query.CompoundQueryAbstractBuilder<T>
-
- Direct Known Subclasses:
CompoundQueryBuilder
,CompoundQueryBuilder.Nested
public abstract class CompoundQueryAbstractBuilder<T extends CompoundQueryAbstractBuilder<T>> extends java.lang.Object
-
-
Constructor Summary
Constructors Constructor Description CompoundQueryAbstractBuilder()
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description MinimumMatchBuilder.Nested<T>
withMinimumMatch()
T
withMinimumMatch(MinimumMatch minMatch)
T
withMinimumMatch(java.util.List<MinimumMatch> minMatches)
T
withMinimumNumberShouldMatch(java.lang.String minimumNumberShouldMatch)
Deprecated.QueryBuilder<T>
withMust()
T
withMust(Query query)
T
withMust(java.util.List<Query> queries)
QueryBuilder<T>
withMustNot()
T
withMustNot(Query query)
T
withMustNot(java.util.List<Query> queries)
T
withQuery(CompoundQuery.Operator clauseOperator, Query query)
QueryBuilder<T>
withShould()
T
withShould(Query query)
T
withShould(java.util.List<Query> queries)
-
-
-
Method Detail
-
withMinimumNumberShouldMatch
@Deprecated public T withMinimumNumberShouldMatch(java.lang.String minimumNumberShouldMatch)
Deprecated.
-
withMust
public QueryBuilder<T> withMust()
-
withShould
public QueryBuilder<T> withShould()
-
withQuery
public T withQuery(CompoundQuery.Operator clauseOperator, Query query)
-
withMustNot
public QueryBuilder<T> withMustNot()
-
withMinimumMatch
public T withMinimumMatch(MinimumMatch minMatch)
-
withMinimumMatch
public T withMinimumMatch(java.util.List<MinimumMatch> minMatches)
-
withMinimumMatch
public MinimumMatchBuilder.Nested<T> withMinimumMatch()
-
-