Returns an UnsignedLong representing the same value as the specified long. @throws IllegalArgumentException if value is negative @since 14.0
(long value)
| 88 | */ |
| 89 | |
| 90 | @CanIgnoreReturnValue |
| 91 | public static UnsignedLong valueOf(long value) { |
| 92 | checkArgument(value >= 0, "value (%s) is outside the range for an unsigned long value", value); |
| 93 | return fromLongBits(value); |
| 94 | } |
| 95 | |
| 96 | /** |
| 97 | * Returns a {@code UnsignedLong} representing the same value as the specified {@code BigInteger}. |
no test coverage detected