Uses of Class
org.apache.lucene.search.BooleanClause
-
Packages that use BooleanClause Package Description org.apache.lucene.queryParser A simple query parser implemented with JavaCC.org.apache.lucene.search Code to search indices. -
-
Uses of BooleanClause in org.apache.lucene.queryParser
Methods in org.apache.lucene.queryParser that return BooleanClause Modifier and Type Method Description protected BooleanClause
QueryParser. newBooleanClause(Query q, BooleanClause.Occur occur)
Builds a new BooleanClause instanceMethod parameters in org.apache.lucene.queryParser with type arguments of type BooleanClause Modifier and Type Method Description protected void
QueryParser. addClause(List<BooleanClause> clauses, int conj, int mods, Query q)
protected Query
QueryParser. getBooleanQuery(List<BooleanClause> clauses)
Factory method for generating query, given a set of clauses.protected Query
QueryParser. getBooleanQuery(List<BooleanClause> clauses, boolean disableCoord)
Factory method for generating query, given a set of clauses. -
Uses of BooleanClause in org.apache.lucene.search
Methods in org.apache.lucene.search that return BooleanClause Modifier and Type Method Description BooleanClause[]
BooleanQuery. getClauses()
Returns the set of clauses in this query.Methods in org.apache.lucene.search that return types with arguments of type BooleanClause Modifier and Type Method Description List<BooleanClause>
BooleanQuery. clauses()
Returns the list of clauses in this query.Iterator<BooleanClause>
BooleanQuery. iterator()
Returns an iterator on the clauses in this query.Methods in org.apache.lucene.search with parameters of type BooleanClause Modifier and Type Method Description void
BooleanQuery. add(BooleanClause clause)
Adds a clause to a boolean query.
-