(UnsignedLong o)
| 260 | } |
| 261 | |
| 262 | @Override |
| 263 | public int compareTo(UnsignedLong o) { |
| 264 | checkNotNull(o); |
| 265 | return UnsignedLongs.compare(value, o.value); |
| 266 | } |
| 267 | |
| 268 | @Override |
| 269 | public int hashCode() { |
nothing calls this directly
no test coverage detected