Constructs a new Short from the specified string. @param string the string representation of a short value. @throws NumberFormatException if string can not be decoded into a short value. @see #parseShort(String)
(String string)
| 72 | * @see #parseShort(String) |
| 73 | */ |
| 74 | public Short(String string) throws NumberFormatException { |
| 75 | this(parseShort(string)); |
| 76 | } |
| 77 | |
| 78 | /** |
| 79 | * Constructs a new {@code Short} with the specified primitive short value. |
nothing calls this directly
no test coverage detected