add --shared
[pylucene.git] / lucene-java-3.4.0 / lucene / contrib / queryparser / src / java / org / apache / lucene / queryParser / standard / config / DateResolutionAttributeImpl.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 org.apache.lucene.document.DateTools;
21 import org.apache.lucene.document.DateTools.Resolution;
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 {@link ParametricRangeQueryNodeProcessor} processor
31  * and must be defined in the {@link QueryConfigHandler}. This attribute tells
32  * the processor which {@link Resolution} to use when parsing the date. <br/>
33  * 
34  * @see org.apache.lucene.queryParser.standard.config.DateResolutionAttribute
35  * 
36  * @deprecated
37  * 
38  */
39 @Deprecated
40 public class DateResolutionAttributeImpl extends AttributeImpl 
41                                 implements DateResolutionAttribute, ConfigAttribute {
42
43   private static final long serialVersionUID = -6804360312723049526L;
44
45   { enableBackwards = false; }
46   
47   private AbstractQueryConfig config;
48   
49   public DateResolutionAttributeImpl() {}
50
51   public void setDateResolution(DateTools.Resolution dateResolution) {
52     config.set(ConfigurationKeys.DATE_RESOLUTION, dateResolution);
53   }
54
55   public DateTools.Resolution getDateResolution() {
56     return config.get(ConfigurationKeys.DATE_RESOLUTION);
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 DateResolutionAttributeImpl) {
73         DateResolutionAttributeImpl dateResAttr = (DateResolutionAttributeImpl) other;
74
75       if (dateResAttr.getDateResolution() == getDateResolution()
76           || dateResAttr.getDateResolution().equals(getDateResolution())) {
77
78         return true;
79
80       }
81
82     }
83
84     return false;
85
86   }
87
88   @Override
89   public int hashCode() {
90     DateTools.Resolution resolution = getDateResolution();
91     return (resolution == null) ? 0 : resolution.hashCode();
92   }
93
94   @Override
95   public String toString() {
96     return "<dateResolutionAttribute dateResolution='" + getDateResolution()
97         + "'/>";
98   }
99   
100   public void setQueryConfigHandler(AbstractQueryConfig config) {
101     this.config = config;
102   }
103
104 }