Package java.lang
Class Byte

Public Method floatValue

float floatValue()

Overrides:

_INSERT_METHOD_SIGNATURE_HERE_

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.