java.lang
Class Boolean

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

public final synchronized class Boolean
extends Object
implements java.io.Serializable

See Also:
Serialized Form

Field Summary
static Boolean FALSE
           
private static long serialVersionUID
           
static Boolean TRUE
           
static Class TYPE
           
private  boolean value
           
 
Constructor Summary
Boolean(boolean)
           
Boolean(String)
           
 
Method Summary
(package private) static void ()
           
 boolean booleanValue()
           
 boolean equals(Object)
           
static boolean getBoolean(String)
           
 int hashCode()
           
private static boolean toBoolean(String)
           
 String toString()
           
static String toString(boolean)
           
static Boolean valueOf(boolean)
           
static Boolean valueOf(String)
           
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
 

Field Detail

TRUE

public static final Boolean TRUE

FALSE

public static final Boolean FALSE

TYPE

public static final Class TYPE

value

private boolean value

serialVersionUID

private static final long serialVersionUID
See Also:
Constant Field Values
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()
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)

toBoolean

private static boolean toBoolean(String)

static void ()