Parses the specified string as a signed decimal short value. @param string the string representation of a short value. @return a Short instance containing the short value represented by string. @throws NumberFormatException if string is {@code
(String string)
| 253 | * @see #parseShort(String) |
| 254 | */ |
| 255 | public static Short valueOf(String string) throws NumberFormatException { |
| 256 | return valueOf(parseShort(string)); |
| 257 | } |
| 258 | |
| 259 | /** |
| 260 | * Parses the specified string as a signed short value using the specified |