|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use BooleanClause.Occur | |
org.apache.lucene.queryParser | A simple query parser implemented with JavaCC. |
org.apache.lucene.search | Search over indices. |
Uses of BooleanClause.Occur in org.apache.lucene.queryParser |
Methods in org.apache.lucene.queryParser with parameters of type BooleanClause.Occur | |
static Query |
MultiFieldQueryParser.parse(String query,
String[] fields,
BooleanClause.Occur[] flags,
Analyzer analyzer)
Parses a query, searching on the fields specified. |
static Query |
MultiFieldQueryParser.parse(String[] queries,
String[] fields,
BooleanClause.Occur[] flags,
Analyzer analyzer)
Parses a query, searching on the fields specified. |
Uses of BooleanClause.Occur in org.apache.lucene.search |
Fields in org.apache.lucene.search declared as BooleanClause.Occur | |
static BooleanClause.Occur |
BooleanClause.Occur.MUST
Use this operator for terms that must appear in the matching documents. |
static BooleanClause.Occur |
BooleanClause.Occur.SHOULD
Use this operator for terms that should appear in the matching documents. |
static BooleanClause.Occur |
BooleanClause.Occur.MUST_NOT
Use this operator for terms that must not appear in the matching documents. |
Methods in org.apache.lucene.search that return BooleanClause.Occur | |
BooleanClause.Occur |
BooleanClause.getOccur()
|
Methods in org.apache.lucene.search with parameters of type BooleanClause.Occur | |
void |
BooleanQuery.add(Query query,
BooleanClause.Occur occur)
Adds a clause to a boolean query. |
void |
BooleanClause.setOccur(BooleanClause.Occur occur)
|
Constructors in org.apache.lucene.search with parameters of type BooleanClause.Occur | |
BooleanClause(Query query,
BooleanClause.Occur occur)
Constructs a BooleanClause. |
|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |