pylucene 3.5.0-3
[pylucene.git] / lucene-java-3.5.0 / lucene / contrib / queryparser / src / java / org / apache / lucene / queryParser / standard / config / LowercaseExpandedTermsAttributeImpl.java
1 package org.apache.lucene.queryParser.standard.config;
2
3 /**
4  * Licensed to the Apache Software Foundation (ASF) under one or more
5  * contributor license agreements.  See the NOTICE file distributed with
6  * this work for additional information regarding copyright ownership.
7  * The ASF licenses this file to You under the Apache License, Version 2.0
8  * (the "License"); you may not use this file except in compliance with
9  * the License.  You may obtain a copy of the License at
10  *
11  *     http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  */
19
20 import java.util.Locale;
21
22 import org.apache.lucene.queryParser.core.config.AbstractQueryConfig;
23 import org.apache.lucene.queryParser.core.config.ConfigAttribute;
24 import org.apache.lucene.queryParser.core.config.QueryConfigHandler;
25 import org.apache.lucene.queryParser.standard.config.StandardQueryConfigHandler.ConfigurationKeys;
26 import org.apache.lucene.queryParser.standard.processors.ParametricRangeQueryNodeProcessor;
27 import org.apache.lucene.util.AttributeImpl;
28
29 /**
30  * This attribute is used by processor {@link ParametricRangeQueryNodeProcessor}
31  * and must be defined in the {@link QueryConfigHandler}. This attribute tells
32  * the processor what is the default {@link Locale} used to parse a date. <br/>
33  * 
34  * @see org.apache.lucene.queryParser.standard.config.LowercaseExpandedTermsAttribute
35  * 
36  * @deprecated
37  * 
38  */
39 @Deprecated
40 public class LowercaseExpandedTermsAttributeImpl extends AttributeImpl
41                                 implements LowercaseExpandedTermsAttribute, ConfigAttribute {
42
43   private static final long serialVersionUID = -2804760312723049527L;
44   
45   private AbstractQueryConfig config;
46
47   { enableBackwards = false; }
48   
49   public LowercaseExpandedTermsAttributeImpl() {}
50
51   public void setLowercaseExpandedTerms(boolean lowercaseExpandedTerms) {
52       config.set(ConfigurationKeys.LOWERCASE_EXPANDED_TERMS, lowercaseExpandedTerms); 
53   }
54
55   public boolean isLowercaseExpandedTerms() {
56     return config.get(ConfigurationKeys.LOWERCASE_EXPANDED_TERMS, true);
57   }
58
59   @Override
60   public void clear() {
61     throw new UnsupportedOperationException();
62   }
63
64   @Override
65   public void copyTo(AttributeImpl target) {
66     throw new UnsupportedOperationException();
67   }
68
69   @Override
70   public boolean equals(Object other) {
71
72     if (other instanceof LowercaseExpandedTermsAttributeImpl
73         && ((LowercaseExpandedTermsAttributeImpl) other)
74             .isLowercaseExpandedTerms() == isLowercaseExpandedTerms()) {
75
76       return true;
77
78     }
79
80     return false;
81
82   }
83
84   @Override
85   public int hashCode() {
86     return isLowercaseExpandedTerms() ? -1 : Integer.MAX_VALUE;
87   }
88
89   @Override
90   public String toString() {
91     return "<lowercaseExpandedTerms lowercaseExpandedTerms="
92         + isLowercaseExpandedTerms() + "/>";
93   }
94   
95   public void setQueryConfigHandler(AbstractQueryConfig config) {
96     this.config = config;
97     
98     if (!config.has(ConfigurationKeys.LOWERCASE_EXPANDED_TERMS)) {
99       config.set(ConfigurationKeys.LOWERCASE_EXPANDED_TERMS, true);
100     }
101     
102   }
103
104 }