Description:
Returns the value of this Float as a float.
Example
Float fl = new Float(20);
float floatfl = fl.floatValue();
Logger.log("float value: " + floatfl);
The example above returns a float value and writes it to the logger.