java.lang.Object
org.apache.lucene.search.Query
org.apache.lucene.search.BooleanQuery
- All Implemented Interfaces:
Iterable<BooleanClause>
A Query that matches documents matching boolean combinations of other queries, e.g.
TermQuerys, PhraseQuerys or other BooleanQuerys.-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic classA builder for boolean queries.static classDeprecated. -
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final List<BooleanClause> private final Map<BooleanClause.Occur, Collection<Query>> private intprivate final int -
Constructor Summary
ConstructorsModifierConstructorDescriptionprivateBooleanQuery(int minimumNumberShouldMatch, BooleanClause[] clauses) -
Method Summary
Modifier and TypeMethodDescriptionclauses()Return a list of the clauses of thisBooleanQuery.private intcreateWeight(IndexSearcher searcher, ScoreMode scoreMode, float boost) Expert: Constructs an appropriate Weight implementation for this query.booleanCompares the specified object with this boolean query for equality.private booleanequalsTo(BooleanQuery other) (package private) Collection<Query> getClauses(BooleanClause.Occur occur) Return the collection of queries for the givenBooleanClause.Occur.static intDeprecated.intGets the minimum number of the optional BooleanClauses which must be satisfied.inthashCode()Override and implement query hash code properly in a subclass.(package private) booleanWhether this query is a pure disjunction, ie.(package private) booleanWhether this query is a two clause disjunction with two term query clauses.final Iterator<BooleanClause> iterator()Returns an iterator on the clauses in this query.rewrite(IndexSearcher indexSearcher) Expert: called to re-write queries into primitive queries.(package private) BooleanQuery(package private) Query[]rewriteTwoClauseDisjunctionWithTermsForCount(IndexSearcher indexSearcher) Rewrite a single two clause disjunction query with terms to two term queries and a conjunction query using the inclusion–exclusion principle.static voidsetMaxClauseCount(int maxClauseCount) Deprecated.Prints a user-readable version of this query.voidvisit(QueryVisitor visitor) Recurse through the query tree, visiting any child queries.Methods inherited from class org.apache.lucene.search.Query
classHash, rewrite, sameClassAs, toStringMethods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface java.lang.Iterable
forEach, spliterator
-
Field Details
-
minimumNumberShouldMatch
private final int minimumNumberShouldMatch -
clauses
-
clauseSets
-
hashCode
private int hashCode
-
-
Constructor Details
-
BooleanQuery
-
-
Method Details
-
getMaxClauseCount
Deprecated.Return the maximum number of clauses permitted, 1024 by default. Attempts to add more than the permitted number of clauses causeBooleanQuery.TooManyClausesto be thrown.- See Also:
-
setMaxClauseCount
Deprecated.Set the maximum number of clauses permitted per BooleanQuery. Default value is 1024. -
getMinimumNumberShouldMatch
public int getMinimumNumberShouldMatch()Gets the minimum number of the optional BooleanClauses which must be satisfied. -
clauses
Return a list of the clauses of thisBooleanQuery. -
getClauses
Return the collection of queries for the givenBooleanClause.Occur. -
isPureDisjunction
boolean isPureDisjunction()Whether this query is a pure disjunction, ie. it only has SHOULD clauses and it is enough for a single clause to match for this boolean query to match. -
isTwoClausePureDisjunctionWithTerms
boolean isTwoClausePureDisjunctionWithTerms()Whether this query is a two clause disjunction with two term query clauses. -
rewriteTwoClauseDisjunctionWithTermsForCount
Query[] rewriteTwoClauseDisjunctionWithTermsForCount(IndexSearcher indexSearcher) throws IOException Rewrite a single two clause disjunction query with terms to two term queries and a conjunction query using the inclusion–exclusion principle.- Throws:
IOException
-
iterator
Returns an iterator on the clauses in this query. It implements theIterableinterface to make it possible to do:for (BooleanClause clause : booleanQuery) {}- Specified by:
iteratorin interfaceIterable<BooleanClause>
-
rewriteNoScoring
BooleanQuery rewriteNoScoring() -
createWeight
public Weight createWeight(IndexSearcher searcher, ScoreMode scoreMode, float boost) throws IOException Description copied from class:QueryExpert: Constructs an appropriate Weight implementation for this query.Only implemented by primitive queries, which re-write to themselves.
- Overrides:
createWeightin classQuery- Parameters:
scoreMode- How the produced scorers will be consumed.boost- The boost that is propagated by the parent queries.- Throws:
IOException
-
rewrite
Description copied from class:QueryExpert: called to re-write queries into primitive queries. For example, a PrefixQuery will be rewritten into a BooleanQuery that consists of TermQuerys.Callers are expected to call
rewritemultiple times if necessary, until the rewritten query is the same as the original query.The rewrite process may be able to make use of IndexSearcher's executor and be executed in parallel if the executor is provided.
However, if any of the intermediary queries do not satisfy the new API, parallel rewrite is not possible for any subsequent sub-queries. To take advantage of this API, the entire query tree must override this method.
- Overrides:
rewritein classQuery- Throws:
IOException- See Also:
-
visit
Description copied from class:QueryRecurse through the query tree, visiting any child queries. -
toString
Prints a user-readable version of this query. -
equals
Compares the specified object with this boolean query for equality. Returns true if and only if the provided object- is also a
BooleanQuery, - has the same value of
getMinimumNumberShouldMatch() - has the same
BooleanClause.Occur.SHOULDclauses, regardless of the order - has the same
BooleanClause.Occur.MUSTclauses, regardless of the order - has the same set of
BooleanClause.Occur.FILTERclauses, regardless of the order and regardless of duplicates - has the same set of
BooleanClause.Occur.MUST_NOTclauses, regardless of the order and regardless of duplicates
- is also a
-
equalsTo
-
computeHashCode
private int computeHashCode() -
hashCode
public int hashCode()Description copied from class:QueryOverride and implement query hash code properly in a subclass. This is required so thatQueryCacheworks properly.
-
IndexSearcher.TooManyClauses