Uses of Class
java.lang.Boolean
-
Packages that use Boolean Package Description java.lang -
-
Uses of Boolean in java.lang
Fields in java.lang declared as Boolean Modifier and Type Field Description static Boolean
Boolean. FALSE
TheBoolean
object that represents the primitive valuefalse
.static Boolean
Boolean. TRUE
TheBoolean
object that represents the primitive valuetrue
.Methods in java.lang that return Boolean Modifier and Type Method Description static Boolean
Boolean. valueOf(boolean b)
Returns aBoolean
instance for the specified boolean value.static Boolean
Boolean. valueOf(String string)
Parses the specified string as a boolean value.Methods in java.lang with parameters of type Boolean Modifier and Type Method Description int
Boolean. compareTo(Boolean that)
Compares this object to the specified boolean object to determine their relative order.
-