Package java.lang
Class Byte

Public Method byteValue

byte byteValue()

Overrides:

_INSERT_METHOD_SIGNATURE_HERE_

Description:

Returns the value of this Byte as a byte.

Example

   Byte by = new Byte("20");
   byte byteby = by.byteValue();
   Logger.log("byte value: " + byteby);

The example above returns a byte value and writes it to the logger.