|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectjava.lang.Boolean
public final class Boolean
The Boolean class wraps a value of the primitive type boolean in an object. An object of type Boolean contains a single field whose type is boolean.
| Field Summary | |
|---|---|
static Boolean |
FALSE
|
static Boolean |
TRUE
|
| Constructor Summary | |
|---|---|
Boolean(boolean value)
Allocates a Boolean object representing the value argument. |
|
| Method Summary | |
|---|---|
boolean |
booleanValue()
Returns the value of this Boolean object as a boolean primitive. |
boolean |
equals(Object obj)
Returns true if and only if the argument is not null and is a Boolean object that represents the same boolean value as this object. |
int |
hashCode()
Returns a hash code for this Boolean object. |
String |
toString()
Returns true if and only if the argument is not null and is a Boolean object that represents the same boolean value as this object. |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Field Detail |
|---|
public static final Boolean TRUE
public static final Boolean FALSE
| Constructor Detail |
|---|
public Boolean(boolean value)
| Method Detail |
|---|
public boolean booleanValue()
public boolean equals(Object obj)
equals in class Objectobj - the reference object with which to compare.
public int hashCode()
hashCode in class Objectpublic String toString()
toString in class Object
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||