Package java.lang
Class Boolean

Public Method toString

String toString()

Overrides:

_INSERT_METHOD_SIGNATURE_HERE_

Description:

Returns a String object representing this Booleans's value. If this object represents the value true, a string equal to "true" is returned. Otherwise, a string equal to "false" is returned.

Example

   Boolean bool = new Boolean("10");    Logger.log(bool.toString());

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