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 BooleanClauseQueryParserBase.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 voidQueryParserBase.addClause(List<BooleanClause> clauses, int conj, int mods, Query q) protected voidQueryParserBase.addMultiTermClauses(List<BooleanClause> clauses, Query q) Adds clauses generated from analysis over text containing whitespace.protected QueryQueryParserBase.getBooleanQuery(List<BooleanClause> clauses) Factory method for generating query, given a set of clauses.final QueryQueryParser.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 BooleanClauseBooleanWeight.WeightedBooleanClause.clauseFields in org.apache.lucene.search with type parameters of type BooleanClauseModifier and TypeFieldDescriptionprivate final List<BooleanClause> BooleanQuery.Builder.clausesprivate final List<BooleanClause> BooleanQuery.clausesprivate List<BooleanClause> IndriQuery.clausesMethods 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 BooleanClauseModifierConstructorDescriptionprivateBooleanQuery(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)