Package java.lang
Class Boolean
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.