Returns a new double initialized to the value represented by the specified String, as performed by the valueOf method of class Double.
(java.lang.String s)
| 209 | * Returns a new double initialized to the value represented by the specified String, as performed by the valueOf method of class Double. |
| 210 | */ |
| 211 | public static double parseDouble(java.lang.String s) throws java.lang.NumberFormatException{ |
| 212 | return StringToReal.parseDouble(s); |
| 213 | } |
| 214 | |
| 215 | /** |
| 216 | * Returns the value of this Double as a short (by casting to a short). |