()
| 189 | } |
| 190 | |
| 191 | public int hashCode() { |
| 192 | return Arrays.hashCode(key) |
| 193 | ^ Arrays.hashCode(family) |
| 194 | ^ Arrays.hashCode(qualifier) |
| 195 | ^ Arrays.hashCode(value) |
| 196 | ^ (int) (timestamp ^ (timestamp >>> 32)) |
| 197 | //^ type |
| 198 | ; |
| 199 | } |
| 200 | |
| 201 | public String toString() { |
| 202 | final StringBuilder buf = new StringBuilder(84 // Boilerplate + timestamp |
no outgoing calls