(final Object other)
| 182 | } |
| 183 | |
| 184 | public boolean equals(final Object other) { |
| 185 | if (other == null || !(other instanceof KeyValue)) { |
| 186 | return false; |
| 187 | } |
| 188 | return compareTo((KeyValue) other) == 0; |
| 189 | } |
| 190 | |
| 191 | public int hashCode() { |
| 192 | return Arrays.hashCode(key) |