Generates a hash code for multiple values. The hash code is generated by calling Arrays#hashCode(Object[]). Note that array arguments to this method, with the exception of a single Object array, do not get any special handling; their hash codes are based on identity and not contents. Thi
(@Nullable Object... objects)
| 81 | |
| 82 | |
| 83 | public static int hashCode(@Nullable Object... objects) { |
| 84 | return Arrays.hashCode(objects); |
| 85 | } |
| 86 | |
| 87 | /** |
| 88 | * Creates an instance of {@link ToStringHelper}. |
no test coverage detected