PyLucene 3.4.0-1 import
[pylucene.git] / java / org / apache / pylucene / queryParser / PythonMultiFieldQueryParser.java
1 /* ====================================================================
2  *   Licensed under the Apache License, Version 2.0 (the "License");
3  *   you may not use this file except in compliance with the License.
4  *   You may obtain a copy of the License at
5  *
6  *       http://www.apache.org/licenses/LICENSE-2.0
7  *
8  *   Unless required by applicable law or agreed to in writing, software
9  *   distributed under the License is distributed on an "AS IS" BASIS,
10  *   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11  *   See the License for the specific language governing permissions and
12  *   limitations under the License.
13  * ====================================================================
14  */
15
16 package org.apache.pylucene.queryParser;
17
18 import java.util.List;
19
20 import org.apache.lucene.analysis.Analyzer;
21 import org.apache.lucene.search.Query;
22 import org.apache.lucene.queryParser.MultiFieldQueryParser;
23 import org.apache.lucene.queryParser.ParseException;
24 import org.apache.lucene.util.Version;
25
26
27 public class PythonMultiFieldQueryParser extends MultiFieldQueryParser {
28
29     private long pythonObject;
30
31     public PythonMultiFieldQueryParser(Version version, String[] fields,
32                                        Analyzer analyzer)
33     {
34         super(version, fields, analyzer);
35     }
36
37     public void pythonExtension(long pythonObject)
38     {
39         this.pythonObject = pythonObject;
40     }
41     public long pythonExtension()
42     {
43         return this.pythonObject;
44     }
45
46     public void finalize()
47         throws Throwable
48     {
49         pythonDecRef();
50     }
51
52     public native void pythonDecRef();
53     public native Query getBooleanQuery(List clauses, boolean disableCoord);
54
55     public native Query getFuzzyQuery(String field, String termText,
56                                       float minSimilarity);
57     public native Query getPrefixQuery(String field, String termText);
58     public native Query getRangeQuery(String field,
59                                       String part1, String part2,
60                                       boolean inclusive);
61     public native Query getWildcardQuery(String field, String termText);
62
63     public native Query getFieldQuery_quoted(String field, String queryText,
64                                              boolean quoted);
65     public native Query getFieldQuery_slop(String field, String queryText,
66                                            int slop);
67
68     public Query getFieldQuery_quoted_super(String field, String queryText,
69                                             boolean quoted)
70         throws ParseException
71     {
72         return super.getFieldQuery(field, queryText, quoted);
73     }
74
75     public Query getFieldQuery_slop_super(String field, String queryText,
76                                           int slop)
77         throws ParseException
78     {
79         return super.getFieldQuery(field, queryText, slop);
80     }
81
82     public Query getFieldQuery(String field, String queryText, boolean quoted)
83     {
84         return getFieldQuery_quoted(field, queryText, quoted);
85     }
86
87     public Query getFieldQuery(String field, String queryText, int slop)
88     {
89         return getFieldQuery_slop(field, queryText, slop);
90     }
91 }