Returns the value of this Float as a short (by casting to a short).
()
| 191 | * Returns the value of this Float as a short (by casting to a short). |
| 192 | */ |
| 193 | public short shortValue(){ |
| 194 | return (short)value; |
| 195 | } |
| 196 | |
| 197 | /** |
| 198 | * Returns a String representation of this Float object. The primitive float value represented by this object is converted to a String exactly as if by the method toString of one argument. |
no outgoing calls