add --shared
[pylucene.git] / lucene-java-3.4.0 / lucene / contrib / analyzers / smartcn / src / java / org / apache / lucene / analysis / cn / smart / hhmm / SegTokenPair.java
1 /**
2  * Licensed to the Apache Software Foundation (ASF) under one or more
3  * contributor license agreements.  See the NOTICE file distributed with
4  * this work for additional information regarding copyright ownership.
5  * The ASF licenses this file to You under the Apache License, Version 2.0
6  * (the "License"); you may not use this file except in compliance with
7  * the License.  You may obtain a copy of the License at
8  *
9  *     http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  */
17
18 package org.apache.lucene.analysis.cn.smart.hhmm;
19
20 import java.util.Arrays;
21
22 /**
23  * A pair of tokens in {@link SegGraph}
24  * @lucene.experimental
25  */
26 class SegTokenPair {
27
28   public char[] charArray;
29
30   /**
31    * index of the first token in {@link SegGraph}
32    */
33   public int from;
34
35   /**
36    * index of the second token in {@link SegGraph}
37    */
38   public int to;
39
40   public double weight;
41
42   public SegTokenPair(char[] idArray, int from, int to, double weight) {
43     this.charArray = idArray;
44     this.from = from;
45     this.to = to;
46     this.weight = weight;
47   }
48
49   /**
50    * @see java.lang.Object#hashCode()
51    */
52   @Override
53   public int hashCode() {
54     final int prime = 31;
55     int result = 1;
56     for(int i=0;i<charArray.length;i++) {
57       result = prime * result + charArray[i];
58     }
59     result = prime * result + from;
60     result = prime * result + to;
61     long temp;
62     temp = Double.doubleToLongBits(weight);
63     result = prime * result + (int) (temp ^ (temp >>> 32));
64     return result;
65   }
66
67   /**
68    * @see java.lang.Object#equals(java.lang.Object)
69    */
70   @Override
71   public boolean equals(Object obj) {
72     if (this == obj)
73       return true;
74     if (obj == null)
75       return false;
76     if (getClass() != obj.getClass())
77       return false;
78     SegTokenPair other = (SegTokenPair) obj;
79     if (!Arrays.equals(charArray, other.charArray))
80       return false;
81     if (from != other.from)
82       return false;
83     if (to != other.to)
84       return false;
85     if (Double.doubleToLongBits(weight) != Double
86         .doubleToLongBits(other.weight))
87       return false;
88     return true;
89   }
90
91 }