Returns a new float initialized to the value represented by the specified String.
(java.lang.String s)
| 184 | * Returns a new float initialized to the value represented by the specified String. |
| 185 | */ |
| 186 | public static float parseFloat(java.lang.String s) throws java.lang.NumberFormatException{ |
| 187 | return StringToReal.parseFloat(s); |
| 188 | } |
| 189 | |
| 190 | /** |
| 191 | * Returns the value of this Float as a short (by casting to a short). |