()
| 105 | * @see java.lang.Object#hashCode() |
| 106 | */ |
| 107 | public int hashCode(){ |
| 108 | int absBegin = getBeginPosition(); |
| 109 | int absEnd = getEndPosition(); |
| 110 | return (absBegin * 37) + (absEnd * 31) + ((absBegin * absEnd) % getLength()) * 11; |
| 111 | } |
| 112 | |
| 113 | /* |
| 114 | * 词元在排序集合中的比较算法 |
nothing calls this directly
no test coverage detected