Parses the specified string as a signed decimal long value. The ASCII character '-' ( '\u002D' ) is recognized as the minus sign. Unlike Long#parseLong(String), this method returns null instead of throwing an exception if parsing fails. Additionally, this m
(String string)
| 361 | */ |
| 362 | |
| 363 | @Beta |
| 364 | @Nullable |
| 365 | @CheckForNull |
| 366 | public static Long tryParse(String string) { |
| 367 | return tryParse(string, 10); |
| 368 | } |
| 369 | |
| 370 | /** |
| 371 | * Parses the specified string as a signed long value using the specified radix. The ASCII |
no test coverage detected