Uses of Class
org.apache.lucene.search.BooleanQuery
-
Packages that use BooleanQuery Package Description org.apache.lucene.queryParser A simple query parser implemented with JavaCC.org.apache.lucene.search Code to search indices. -
-
Uses of BooleanQuery in org.apache.lucene.queryParser
Methods in org.apache.lucene.queryParser that return BooleanQuery Modifier and Type Method Description protected BooleanQuery
QueryParser. newBooleanQuery(boolean disableCoord)
Builds a new BooleanQuery instance -
Uses of BooleanQuery in org.apache.lucene.search
Fields in org.apache.lucene.search with type parameters of type BooleanQuery Modifier and Type Field Description static ScoringRewrite<BooleanQuery>
ScoringRewrite. SCORING_BOOLEAN_QUERY_REWRITE
A rewrite method that first translates each term intoBooleanClause.Occur.SHOULD
clause in a BooleanQuery, and keeps the scores as computed by the query.Methods in org.apache.lucene.search that return BooleanQuery Modifier and Type Method Description protected BooleanQuery
MultiTermQuery.TopTermsBoostOnlyBooleanQueryRewrite. getTopLevelQuery()
protected BooleanQuery
MultiTermQuery.TopTermsScoringBooleanQueryRewrite. getTopLevelQuery()
Methods in org.apache.lucene.search with parameters of type BooleanQuery Modifier and Type Method Description protected void
MultiTermQuery.TopTermsBoostOnlyBooleanQueryRewrite. addClause(BooleanQuery topLevel, Term term, float boost)
protected void
MultiTermQuery.TopTermsScoringBooleanQueryRewrite. addClause(BooleanQuery topLevel, Term term, float boost)
static Query
Query. mergeBooleanQueries(BooleanQuery... queries)
Expert: merges the clauses of a set of BooleanQuery's into a single BooleanQuery.
-