|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.apache.lucene.queryParser.standard.QueryParserWrapper org.apache.lucene.queryParser.standard.MultiFieldQueryParserWrapper
@Deprecated public class MultiFieldQueryParserWrapper
This class behaves as the as the lucene 2.4 MultiFieldQueryParser class, but uses the new
query parser interface instead of the old one.
This class should be used when the new query parser features are needed and
also keep at the same time the old query parser interface.
Nested Class Summary |
---|
Nested classes/interfaces inherited from class org.apache.lucene.queryParser.standard.QueryParserWrapper |
---|
QueryParserWrapper.Operator |
Field Summary |
---|
Fields inherited from class org.apache.lucene.queryParser.standard.QueryParserWrapper |
---|
AND_OPERATOR, OR_OPERATOR |
Constructor Summary | |
---|---|
MultiFieldQueryParserWrapper(String[] fields,
Analyzer analyzer)
Deprecated. Creates a MultiFieldQueryParser. |
|
MultiFieldQueryParserWrapper(String[] fields,
Analyzer analyzer,
Map<String,Float> boosts)
Deprecated. Creates a MultiFieldQueryParser. |
Method Summary | |
---|---|
static Query |
parse(String[] queries,
String[] fields,
Analyzer analyzer)
Deprecated. Parses a query which searches on the fields specified. |
static Query |
parse(String[] queries,
String[] fields,
BooleanClause.Occur[] flags,
Analyzer analyzer)
Deprecated. Parses a query, searching on the fields specified. |
static Query |
parse(String query,
String[] fields,
BooleanClause.Occur[] flags,
Analyzer analyzer)
Deprecated. Parses a query, searching on the fields specified. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public MultiFieldQueryParserWrapper(String[] fields, Analyzer analyzer, Map<String,Float> boosts)
It will, when parse(String query) is called, construct a query like this
(assuming the query consists of two terms and you specify the two fields
title
and body
):
(title:term1 body:term1) (title:term2 body:term2)
When setDefaultOperator(AND_OPERATOR) is set, the result will be:
+(title:term1 body:term1) +(title:term2 body:term2)
When you pass a boost (title=>5 body=>10) you can get
+(title:term1^5.0 body:term1^10.0) +(title:term2^5.0 body:term2^10.0)
In other words, all the query's terms must appear, but it doesn't matter in what fields they appear.
public MultiFieldQueryParserWrapper(String[] fields, Analyzer analyzer)
It will, when parse(String query) is called, construct a query like this
(assuming the query consists of two terms and you specify the two fields
title
and body
):
(title:term1 body:term1) (title:term2 body:term2)
When setDefaultOperator(AND_OPERATOR) is set, the result will be:
+(title:term1 body:term1) +(title:term2 body:term2)
In other words, all the query's terms must appear, but it doesn't matter in what fields they appear.
Method Detail |
---|
public static Query parse(String[] queries, String[] fields, Analyzer analyzer) throws ParseException
If x fields are specified, this effectively constructs:
<code> (field1:query1) (field2:query2) (field3:query3)...(fieldx:queryx) </code>
queries
- Queries strings to parsefields
- Fields to search onanalyzer
- Analyzer to use
ParseException
- if query parsing fails
IllegalArgumentException
- if the length of the queries array differs from the length of the
fields arraypublic static Query parse(String query, String[] fields, BooleanClause.Occur[] flags, Analyzer analyzer) throws ParseException
Usage: <code> String[] fields = {"filename", "contents", "description"}; BooleanClause.Occur[] flags = {BooleanClause.Occur.SHOULD, BooleanClause.Occur.MUST, BooleanClause.Occur.MUST_NOT}; MultiFieldQueryParser.parse("query", fields, flags, analyzer); </code>
The code above would construct a query:
<code> (filename:query) +(contents:query) -(description:query) </code>
query
- Query string to parsefields
- Fields to search onflags
- Flags describing the fieldsanalyzer
- Analyzer to use
ParseException
- if query parsing fails
IllegalArgumentException
- if the length of the fields array differs from the length of the
flags arraypublic static Query parse(String[] queries, String[] fields, BooleanClause.Occur[] flags, Analyzer analyzer) throws ParseException
Usage: <code> String[] query = {"query1", "query2", "query3"}; String[] fields = {"filename", "contents", "description"}; BooleanClause.Occur[] flags = {BooleanClause.Occur.SHOULD, BooleanClause.Occur.MUST, BooleanClause.Occur.MUST_NOT}; MultiFieldQueryParser.parse(query, fields, flags, analyzer); </code>
The code above would construct a query:
<code> (filename:query1) +(contents:query2) -(description:query3) </code>
queries
- Queries string to parsefields
- Fields to search onflags
- Flags describing the fieldsanalyzer
- Analyzer to use
ParseException
- if query parsing fails
IllegalArgumentException
- if the length of the queries, fields, and flags array differ
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |