Uses of Class
org.apache.lucene.search.BooleanClause
-
Packages that use BooleanClause Package Description org.apache.lucene.queryparser.classic A simple query parser implemented with JavaCC.org.apache.lucene.search Code to search indices. -
-
Uses of BooleanClause in org.apache.lucene.queryparser.classic
Methods in org.apache.lucene.queryparser.classic that return BooleanClause Modifier and Type Method Description protected BooleanClauseQueryParserBase. newBooleanClause(Query q, BooleanClause.Occur occur)Builds a new BooleanClause instanceMethod parameters in org.apache.lucene.queryparser.classic with type arguments of type BooleanClause Modifier and Type Method Description protected voidQueryParserBase. addClause(java.util.List<BooleanClause> clauses, int conj, int mods, Query q)protected voidQueryParserBase. addMultiTermClauses(java.util.List<BooleanClause> clauses, Query q)Adds clauses generated from analysis over text containing whitespace.protected QueryQueryParserBase. getBooleanQuery(java.util.List<BooleanClause> clauses)Factory method for generating query, given a set of clauses.QueryQueryParser. MultiTerm(java.lang.String field, java.util.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 BooleanClause Modifier and Type Field Description (package private) BooleanClauseBooleanWeight.WeightedBooleanClause. clauseFields in org.apache.lucene.search with type parameters of type BooleanClause Modifier and Type Field Description private java.util.List<BooleanClause>BooleanQuery.Builder. clausesprivate java.util.List<BooleanClause>BooleanQuery. clausesMethods in org.apache.lucene.search that return types with arguments of type BooleanClause Modifier and Type Method Description java.util.List<BooleanClause>BooleanQuery. clauses()Return a list of the clauses of thisBooleanQuery.java.util.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 BooleanQuery.BuilderBooleanQuery.Builder. add(BooleanClause clause)Add a new clause to thisBooleanQuery.Builder.Constructors in org.apache.lucene.search with parameters of type BooleanClause Constructor Description BooleanQuery(int minimumNumberShouldMatch, BooleanClause[] clauses)WeightedBooleanClause(BooleanClause clause, Weight weight)
-