Package java.lang
Class Byte

Public Method intValue

int intValue()

Overrides:

_INSERT_METHOD_SIGNATURE_HERE_

Description:

Returns an int value of this Byte.

Example

   Byte by = new Byte("10");
   int intvalue = by.intValue();
   Logger.log("intvalue: " + intvalue);

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