Description:
Returns the value of this Byte as a float.
Example
Byte by = new Byte("10");
float floatByte = by.floatValue();
Logger.log("float value: " + floatByte);
The example above returns a float value and writes it to the logger.