Uses of Class
org.apache.lucene.search.BooleanClause
Packages that use BooleanClause
Package
Description
A simple query parser implemented with JavaCC.
Code to search indices.
-
Uses of BooleanClause in org.apache.lucene.queryparser.classic
Methods in org.apache.lucene.queryparser.classic that return BooleanClauseModifier and TypeMethodDescriptionprotected BooleanClause
QueryParserBase.newBooleanClause
(Query q, BooleanClause.Occur occur) Builds a new BooleanClause instanceMethod parameters in org.apache.lucene.queryparser.classic with type arguments of type BooleanClauseModifier and TypeMethodDescriptionprotected void
QueryParserBase.addClause
(List<BooleanClause> clauses, int conj, int mods, Query q) protected void
QueryParserBase.addMultiTermClauses
(List<BooleanClause> clauses, Query q) Adds clauses generated from analysis over text containing whitespace.protected Query
QueryParserBase.getBooleanQuery
(List<BooleanClause> clauses) Factory method for generating query, given a set of clauses.final Query
QueryParser.MultiTerm
(String field, List<BooleanClause> clauses) Returns the first query if splitOnWhitespace=true or otherwise the entire produced query -
Uses of BooleanClause in org.apache.lucene.search
Fields in org.apache.lucene.search declared as BooleanClauseModifier and TypeFieldDescription(package private) final BooleanClause
BooleanWeight.WeightedBooleanClause.clause
Fields in org.apache.lucene.search with type parameters of type BooleanClauseModifier and TypeFieldDescriptionprivate final List
<BooleanClause> BooleanQuery.Builder.clauses
private final List
<BooleanClause> BooleanQuery.clauses
private List
<BooleanClause> IndriQuery.clauses
Methods in org.apache.lucene.search that return types with arguments of type BooleanClauseModifier and TypeMethodDescriptionBooleanQuery.clauses()
Return a list of the clauses of thisBooleanQuery
.IndriQuery.getClauses()
final Iterator
<BooleanClause> BooleanQuery.iterator()
Returns an iterator on the clauses in this query.IndriQuery.iterator()
Methods in org.apache.lucene.search with parameters of type BooleanClauseModifier and TypeMethodDescriptionBooleanQuery.Builder.add
(BooleanClause clause) Add a new clause to thisBooleanQuery.Builder
.Constructors in org.apache.lucene.search with parameters of type BooleanClauseModifierConstructorDescriptionprivate
BooleanQuery
(int minimumNumberShouldMatch, BooleanClause[] clauses) (package private)
WeightedBooleanClause
(BooleanClause clause, Weight weight) Constructor parameters in org.apache.lucene.search with type arguments of type BooleanClauseModifierConstructorDescriptionIndriAndQuery
(List<BooleanClause> clauses) IndriQuery
(List<BooleanClause> clauses)