Class Boolean
java.lang.Object
java.lang.Boolean
- All Implemented Interfaces:
Serializable,Comparable<Boolean>,Constable
The
Boolean class is thewrapper class for values of the primitivetypeboolean. An object of typeBoolean contains asingle field whose type isboolean.In addition, this class provides many methods forconverting aboolean to aString and aString to aboolean, as well as otherconstants and methods useful when dealing with aboolean.
This is avalue-basedclass; programmers should treat instances that areequal as interchangeable and should notuse instances for synchronization, or unpredictable behavior mayoccur. For example, in a future release, synchronization may fail.
- Since:
- 1.0
- See Also:
Field Summary
FieldsConstructor Summary
ConstructorsMethod Summary
Modifier and TypeMethodDescriptionbooleanReturns the value of thisBooleanobject as a booleanprimitive.static intcompare(boolean x, boolean y) Compares twobooleanvalues.intCompares thisBooleaninstance with another.Returns anOptionalcontaining the nominal descriptor for thisinstance.booleanReturnstrueif and only if the argument is notnulland is aBooleanobject thatrepresents the samebooleanvalue as this object.static booleangetBoolean(String name) Returnstrueif and only if the system property namedby the argument exists and is equal to, ignoring case, thestring"true".inthashCode()Returns a hash code for thisBooleanobject.static inthashCode(boolean value) Returns a hash code for abooleanvalue; compatible withBoolean.hashCode().static booleanlogicalAnd(boolean a, boolean b) Returns the result of applying the logical AND operator to thespecifiedbooleanoperands.static booleanlogicalOr(boolean a, boolean b) Returns the result of applying the logical OR operator to thespecifiedbooleanoperands.static booleanlogicalXor(boolean a, boolean b) Returns the result of applying the logical XOR operator to thespecifiedbooleanoperands.static booleanParses the string argument as a boolean.toString()Returns aStringobject representing this Boolean'svalue.staticStringtoString(boolean b) Returns aStringobject representing the specifiedboolean.staticBooleanvalueOf(boolean b) Returns aBooleaninstance representing the specifiedbooleanvalue.staticBooleanReturns aBooleanwith a value represented by thespecified string.
Field Details
TRUE
TheBooleanobject corresponding to the primitivevaluetrue.FALSE
TheBooleanobject corresponding to the primitivevaluefalse.TYPE
Constructor Details
Boolean
Deprecated.It is rarely appropriate to use this constructor. The static factoryvalueOf(boolean)is generally a better choice, as it islikely to yield significantly better space and time performance.Also consider using the final fieldsTRUEandFALSEif possible.Allocates aBooleanobject representing thevalueargument.- Parameters:
value- the value of theBoolean.
Boolean
Deprecated.It is rarely appropriate to use this constructor.UseparseBoolean(String)to convert a string to abooleanprimitive, or usevalueOf(String)to convert a string to aBooleanobject.Allocates aBooleanobject representing the valuetrueif the string argument is notnulland is equal, ignoring case, to the string"true".Otherwise, allocates aBooleanobject representing thevaluefalse.- Parameters:
s- the string to be converted to aBoolean.
Method Details
parseBoolean
Parses the string argument as a boolean. Thebooleanreturned represents the valuetrueif the string argumentis notnulland is equal, ignoring case, to the string"true".Otherwise, a false value is returned, including for a nullargument.Example:
Boolean.parseBoolean("True")returnstrue.
Example:Boolean.parseBoolean("yes")returnsfalse.- Parameters:
s- theStringcontaining the boolean representation to be parsed- Returns:
- the boolean represented by the string argument
- Since:
- 1.5
booleanValue
public boolean booleanValue()Returns the value of thisBooleanobject as a booleanprimitive.- Returns:
- the primitive
booleanvalue of this object.
valueOf
Returns aBooleaninstance representing the specifiedbooleanvalue. If the specifiedbooleanvalueistrue, this method returnsBoolean.TRUE;if it isfalse, this method returnsBoolean.FALSE.If a newBooleaninstance is not required, this methodshould generally be used in preference to the constructorBoolean(boolean), as this method is likely to yieldsignificantly better space and time performance.- Parameters:
b- a boolean value.- Returns:
- a
Booleaninstance representingb. - Since:
- 1.4
valueOf
Returns aBooleanwith a value represented by thespecified string. TheBooleanreturned represents atrue value if the string argument is notnulland is equal, ignoring case, to the string"true".Otherwise, a false value is returned, including for a nullargument.- Parameters:
s- a string.- Returns:
- the
Booleanvalue represented by the string.
toString
Returns aStringobject representing the specifiedboolean. If the specified boolean istrue, thenthe string"true"will be returned, otherwise thestring"false"will be returned.- Parameters:
b- the boolean to be converted- Returns:
- the string representation of the specified
boolean - Since:
- 1.4
toString
hashCode
hashCode
public static int hashCode(boolean value) Returns a hash code for abooleanvalue; compatible withBoolean.hashCode().- Parameters:
value- the value to hash- Returns:
- a hash code value for a
booleanvalue. - Since:
- 1.8
equals
getBoolean
Returnstrueif and only if the system property namedby the argument exists and is equal to, ignoring case, thestring"true".A system property is accessible throughgetProperty, amethod defined by theSystemclass.If there is noproperty with the specified name, or if the specified name isempty or null, then
falseis returned.- Parameters:
name- the system property name.- Returns:
- the
booleanvalue of the system property. - See Also:
compareTo
Compares thisBooleaninstance with another.- Specified by:
compareToin interfaceComparable<Boolean>- Parameters:
b- theBooleaninstance to be compared- Returns:
- zero if this object represents the same boolean value as the argument; a positive value if this object represents true and the argument represents false; and a negative value if this object represents false and the argument represents true
- Throws:
NullPointerException- if the argument isnull- Since:
- 1.5
- See Also:
compare
public static int compare(boolean x, boolean y) Compares twobooleanvalues.The value returned is identical to what would be returned by:Boolean.valueOf(x).compareTo(Boolean.valueOf(y))
- Parameters:
x- the firstbooleanto comparey- the secondbooleanto compare- Returns:
- the value
0ifx == y; a value less than0if!x && y; and a value greater than0ifx && !y - Since:
- 1.7
logicalAnd
public static boolean logicalAnd(boolean a, boolean b) Returns the result of applying the logical AND operator to thespecifiedbooleanoperands.- Parameters:
a- the first operandb- the second operand- Returns:
- the logical AND of
aandb - Since:
- 1.8
- See Also:
logicalOr
public static boolean logicalOr(boolean a, boolean b) Returns the result of applying the logical OR operator to thespecifiedbooleanoperands.- Parameters:
a- the first operandb- the second operand- Returns:
- the logical OR of
aandb - Since:
- 1.8
- See Also:
logicalXor
public static boolean logicalXor(boolean a, boolean b) Returns the result of applying the logical XOR operator to thespecifiedbooleanoperands.- Parameters:
a- the first operandb- the second operand- Returns:
- the logical XOR of
aandb - Since:
- 1.8
- See Also:
describeConstable
Returns anOptionalcontaining the nominal descriptor for thisinstance.- Specified by:
describeConstablein interfaceConstable- Returns:
- an
Optionaldescribing theBoolean instance - Since:
- 15