java.lang
Class Boolean

java.lang.Object
  |
  +--java.lang.Boolean
All Implemented Interfaces:
Serializable

public final synchronized class Boolean
extends Object
implements Serializable

See Also:
Serialized Form

Field Summary
static Boolean FALSE
           
static Boolean TRUE
           
static Class TYPE
           
 
Constructor Summary
Boolean(boolean)
           
Boolean(String)
           
 
Method Summary
 boolean booleanValue()
           
 boolean equals(Object)
           
static boolean getBoolean(String)
           
 int hashCode()
           
 String toString()
          Returns the empty string.
static String toString(boolean)
           
static Boolean valueOf(boolean)
           
static Boolean valueOf(String)
           
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait
 

Field Detail

TRUE

public static final Boolean TRUE

FALSE

public static final Boolean FALSE

TYPE

public static final Class TYPE
Constructor Detail

Boolean

public Boolean(boolean)

Boolean

public Boolean(String)
Method Detail

booleanValue

public boolean booleanValue()

valueOf

public static Boolean valueOf(boolean)

valueOf

public static Boolean valueOf(String)

toString

public static String toString(boolean)

toString

public String toString()
Description copied from class: Object
Returns the empty string. It's here to satisfy javac.

Overrides:
toString in class Object

hashCode

public int hashCode()
Overrides:
hashCode in class Object

equals

public boolean equals(Object)
Overrides:
equals in class Object

getBoolean

public static boolean getBoolean(String)