Package java.lang
Class Byte

Public Method toString

String toString()

Overrides:

static String toString(byte s)

_INSERT_METHOD_SIGNATURE_HERE_

Description:

toString() method:

Returns a String object representing this Byte's value.

toString(byte s) method:

Returns a new String object representing the specified Byte. The radix is assumed to be 10.

Example

   Logger.log(Byte.toString("20"));

The example above returns the byte value converted to a string.