| Package | Description |
|---|---|
| org.apache.lucene.queryParser |
A simple query parser implemented with JavaCC.
|
| org.apache.lucene.search |
Code to search indices.
|
| Modifier and Type | Method and Description |
|---|---|
protected BooleanClause |
QueryParser.newBooleanClause(Query q,
BooleanClause.Occur occur)
Builds a new BooleanClause instance
|
static Query |
MultiFieldQueryParser.parse(String[] queries,
String[] fields,
BooleanClause.Occur[] flags,
Analyzer analyzer)
Deprecated.
|
static Query |
MultiFieldQueryParser.parse(String query,
String[] fields,
BooleanClause.Occur[] flags,
Analyzer analyzer)
Deprecated.
|
static Query |
MultiFieldQueryParser.parse(Version matchVersion,
String[] queries,
String[] fields,
BooleanClause.Occur[] flags,
Analyzer analyzer)
Parses a query, searching on the fields specified.
|
static Query |
MultiFieldQueryParser.parse(Version matchVersion,
String query,
String[] fields,
BooleanClause.Occur[] flags,
Analyzer analyzer)
Parses a query, searching on the fields specified.
|
| Modifier and Type | Field and Description |
|---|---|
static BooleanClause.Occur |
BooleanClause.Occur.MUST
Use this operator for clauses that must appear in the matching documents.
|
static BooleanClause.Occur |
BooleanClause.Occur.MUST_NOT
Use this operator for clauses that must not appear in the matching documents.
|
static BooleanClause.Occur |
BooleanClause.Occur.SHOULD
Use this operator for clauses that should appear in the
matching documents.
|
| Modifier and Type | Method and Description |
|---|---|
BooleanClause.Occur |
BooleanClause.getOccur() |
| Modifier and Type | Method and Description |
|---|---|
void |
BooleanQuery.add(Query query,
BooleanClause.Occur occur)
Adds a clause to a boolean query.
|
void |
BooleanClause.setOccur(BooleanClause.Occur occur) |
| Constructor and Description |
|---|
BooleanClause(Query query,
BooleanClause.Occur occur)
Constructs a BooleanClause.
|
Copyright © 2000-2012 Apache Software Foundation. All Rights Reserved.