Package java.lang
Class Boolean

Public Method booleanValue

boolean booleanValue()

_INSERT_METHOD_SIGNATURE_HERE_

Description:

Returns the value of this Boolean object as a boolean primitive.

Example

   Boolean bool = new Boolean("true");
   if (bool.booleanValue())
      Logger.log("bool value is ture");

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