Returns true if object is a HashCode instance with the identical byte representation to this hash code. Security note: this method uses a constant-time (not short-circuiting) implementation to protect against tim
(@Nullable Object object)
| 386 | */ |
| 387 | |
| 388 | @Override |
| 389 | public final boolean equals(@Nullable Object object) { |
| 390 | if (object instanceof HashCode) { |
| 391 | HashCode that = (HashCode) object; |
| 392 | return bits() == that.bits() && equalsSameBits(that); |
| 393 | } |
| 394 | return false; |
| 395 | } |
| 396 | |
| 397 | /** |
| 398 | * Returns a "Java hash code" for this {@code HashCode} instance; this is well-defined (so, for |
nothing calls this directly
no test coverage detected