Returns the unsigned long value represented by the given decimal string. @throws NumberFormatException if the string does not contain a valid unsigned long value @throws NullPointerException if string is null (in contrast to Long#parseLong(String))
(String string)
| 269 | */ |
| 270 | |
| 271 | @CanIgnoreReturnValue |
| 272 | public static long parseUnsignedLong(String string) { |
| 273 | return parseUnsignedLong(string, 10); |
| 274 | } |
| 275 | |
| 276 | /** |
| 277 | * Returns the unsigned {@code long} value represented by the given string. |
no test coverage detected