pylucene 3.5.0-3
[pylucene.git] / lucene-java-3.5.0 / lucene / contrib / queryparser / src / java / org / apache / lucene / queryParser / surround / query / SrndTermQuery.java
1 package org.apache.lucene.queryParser.surround.query;
2 /**
3  * Licensed to the Apache Software Foundation (ASF) under one or more
4  * contributor license agreements.  See the NOTICE file distributed with
5  * this work for additional information regarding copyright ownership.
6  * The ASF licenses this file to You under the Apache License, Version 2.0
7  * (the "License"); you may not use this file except in compliance with
8  * the License.  You may obtain a copy of the License at
9  *
10  *     http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  */
18
19 import java.io.IOException;
20
21 import org.apache.lucene.index.IndexReader;
22 import org.apache.lucene.index.Term;
23 import org.apache.lucene.index.TermEnum;
24
25  
26 public class SrndTermQuery extends SimpleTerm {
27   public SrndTermQuery(String termText, boolean quoted) {
28     super(quoted);
29     this.termText = termText;
30   }
31
32   private final String termText;
33   public String getTermText() {return termText;}
34         
35   public Term getLuceneTerm(String fieldName) {
36     return new Term(fieldName, getTermText());
37   }
38   
39   @Override
40   public String toStringUnquoted() {return getTermText();}
41   
42   @Override
43   public void visitMatchingTerms(
44     IndexReader reader,
45     String fieldName,
46     MatchingTermVisitor mtv) throws IOException
47   {
48     /* check term presence in index here for symmetry with other SimpleTerm's */
49     TermEnum enumerator = reader.terms(getLuceneTerm(fieldName));
50     try {
51       Term it= enumerator.term(); /* same or following index term */
52       if ((it != null)
53           && it.text().equals(getTermText())
54           && it.field().equals(fieldName)) {
55         mtv.visitMatchingTerm(it);
56       }
57     } finally {
58       enumerator.close();
59     }
60   }
61 }
62   
63
64