pylucene 3.5.0-3
[pylucene.git] / lucene-java-3.5.0 / lucene / contrib / icu / src / java / org / apache / lucene / analysis / icu / tokenattributes / ScriptAttributeImpl.java
1 package org.apache.lucene.analysis.icu.tokenattributes;
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.io.Serializable;
21
22 import org.apache.lucene.util.AttributeImpl;
23 import org.apache.lucene.util.AttributeReflector;
24
25 import com.ibm.icu.lang.UScript;
26
27 /**
28  * Implementation of {@link ScriptAttribute} that stores the script
29  * as an integer.
30  * @lucene.experimental
31  */
32 public class ScriptAttributeImpl extends AttributeImpl implements ScriptAttribute, Cloneable, Serializable {
33   private int code = UScript.COMMON;
34   
35   public int getCode() {
36     return code;
37   }
38   
39   public void setCode(int code) {
40     this.code = code;
41   }
42
43   public String getName() {
44     return UScript.getName(code);
45   }
46
47   public String getShortName() {
48     return UScript.getShortName(code);
49   }
50   
51   @Override
52   public void clear() {
53     code = UScript.COMMON;
54   }
55
56   @Override
57   public void copyTo(AttributeImpl target) {
58     ScriptAttribute t = (ScriptAttribute) target;
59     t.setCode(code);
60   }
61   
62   @Override
63   public boolean equals(Object other) {
64     if (this == other) {
65       return true;
66     }
67     
68     if (other instanceof ScriptAttributeImpl) {
69       return ((ScriptAttributeImpl) other).code == code;
70     }
71     
72     return false;
73   }
74
75   @Override
76   public int hashCode() {
77     return code;
78   }
79
80   @Override
81   public void reflectWith(AttributeReflector reflector) {
82     reflector.reflect(ScriptAttribute.class, "script", getName());
83   }
84 }