Package org.apache.lucene.search
Class BooleanQuery
- java.lang.Object
-
- org.apache.lucene.search.Query
-
- org.apache.lucene.search.BooleanQuery
-
- All Implemented Interfaces:
java.lang.Cloneable,java.lang.Iterable<BooleanClause>
public class BooleanQuery extends Query implements java.lang.Iterable<BooleanClause>
A Query that matches documents matching boolean combinations of other queries, e.g.TermQuerys,PhraseQuerys or other BooleanQuerys.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classBooleanQuery.TooManyClausesThrown when an attempt is made to add more thangetMaxClauseCount()clauses.
-
Constructor Summary
Constructors Constructor Description BooleanQuery()Constructs an empty boolean query.BooleanQuery(boolean disableCoord)Constructs an empty boolean query.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description voidadd(BooleanClause clause)Adds a clause to a boolean query.voidadd(Query query, BooleanClause.Occur occur)Adds a clause to a boolean query.java.util.List<BooleanClause>clauses()Returns the list of clauses in this query.BooleanQueryclone()Returns a clone of this query.WeightcreateWeight(IndexSearcher searcher)Expert: Constructs an appropriate Weight implementation for this query.booleanequals(java.lang.Object o)Returns true iffois equal to this.voidextractTerms(java.util.Set<Term> terms)Expert: adds all terms occurring in this query to the terms set.BooleanClause[]getClauses()Returns the set of clauses in this query.static intgetMaxClauseCount()Return the maximum number of clauses permitted, 1024 by default.intgetMinimumNumberShouldMatch()Gets the minimum number of the optional BooleanClauses which must be satisfied.inthashCode()Returns a hash code value for this object.booleanisCoordDisabled()Returns true iffSimilarity.coord(int,int)is disabled in scoring for this query instance.java.util.Iterator<BooleanClause>iterator()Returns an iterator on the clauses in this query.Queryrewrite(IndexReader reader)Expert: called to re-write queries into primitive queries.static voidsetMaxClauseCount(int maxClauseCount)Set the maximum number of clauses permitted per BooleanQuery.voidsetMinimumNumberShouldMatch(int min)Specifies a minimum number of the optional BooleanClauses which must be satisfied.java.lang.StringtoString(java.lang.String field)Prints a user-readable version of this query.
-
-
-
Constructor Detail
-
BooleanQuery
public BooleanQuery()
Constructs an empty boolean query.
-
BooleanQuery
public BooleanQuery(boolean disableCoord)
Constructs an empty boolean query.Similarity.coord(int,int)may be disabled in scoring, as appropriate. For example, this score factor does not make sense for most automatically generated queries, likeWildcardQueryandFuzzyQuery.- Parameters:
disableCoord- disablesSimilarity.coord(int,int)in scoring.
-
-
Method Detail
-
getMaxClauseCount
public static int getMaxClauseCount()
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(int)
-
setMaxClauseCount
public static void setMaxClauseCount(int maxClauseCount)
Set the maximum number of clauses permitted per BooleanQuery. Default value is 1024.
-
isCoordDisabled
public boolean isCoordDisabled()
Returns true iffSimilarity.coord(int,int)is disabled in scoring for this query instance.- See Also:
BooleanQuery(boolean)
-
setMinimumNumberShouldMatch
public void setMinimumNumberShouldMatch(int min)
Specifies a minimum number of the optional BooleanClauses which must be satisfied.By default no optional clauses are necessary for a match (unless there are no required clauses). If this method is used, then the specified number of clauses is required.
Use of this method is totally independent of specifying that any specific clauses are required (or prohibited). This number will only be compared against the number of matching optional clauses.
- Parameters:
min- the number of optional clauses that must match
-
getMinimumNumberShouldMatch
public int getMinimumNumberShouldMatch()
Gets the minimum number of the optional BooleanClauses which must be satisfied.
-
add
public void add(Query query, BooleanClause.Occur occur)
Adds a clause to a boolean query.- Throws:
BooleanQuery.TooManyClauses- if the new number of clauses exceeds the maximum clause number- See Also:
getMaxClauseCount()
-
add
public void add(BooleanClause clause)
Adds a clause to a boolean query.- Throws:
BooleanQuery.TooManyClauses- if the new number of clauses exceeds the maximum clause number- See Also:
getMaxClauseCount()
-
getClauses
public BooleanClause[] getClauses()
Returns the set of clauses in this query.
-
clauses
public java.util.List<BooleanClause> clauses()
Returns the list of clauses in this query.
-
iterator
public final java.util.Iterator<BooleanClause> 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 interfacejava.lang.Iterable<BooleanClause>
-
createWeight
public Weight createWeight(IndexSearcher searcher) throws java.io.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- Throws:
java.io.IOException
-
rewrite
public Query rewrite(IndexReader reader) throws java.io.IOException
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.
-
extractTerms
public void extractTerms(java.util.Set<Term> terms)
Description copied from class:QueryExpert: adds all terms occurring in this query to the terms set. Only works if this query is in itsrewrittenform.- Overrides:
extractTermsin classQuery
-
clone
public BooleanQuery clone()
Description copied from class:QueryReturns a clone of this query.
-
toString
public java.lang.String toString(java.lang.String field)
Prints a user-readable version of this query.
-
equals
public boolean equals(java.lang.Object o)
Returns true iffois equal to this.
-
-