Parses the specified string as a signed decimal long value. @param string the string representation of a long value. @return a Long instance containing the long value represented by string. @throws NumberFormatException if string is {@code null
(String string)
| 544 | * @see #parseLong(String) |
| 545 | */ |
| 546 | public static Long valueOf(String string) throws NumberFormatException { |
| 547 | return valueOf(parseLong(string)); |
| 548 | } |
| 549 | |
| 550 | /** |
| 551 | * Parses the specified string as a signed long value using the specified |