Return type | Name and parameters |
---|---|
Boolean
|
and(Boolean right)
Logical conjunction of two boolean operators. |
boolean
|
asBoolean()
Coerce an Boolean instance to a boolean value. |
Boolean
|
implies(Boolean right)
Logical implication of two boolean operators |
Boolean
|
or(Boolean right)
Logical disjunction of two boolean operators |
Boolean
|
toBoolean()
Identity conversion which returns Boolean.TRUE for a true Boolean and Boolean.FALSE for a false Boolean. |
Boolean
|
xor(Boolean right)
Exclusive disjunction of two boolean operators |
Logical conjunction of two boolean operators.
right
- right operator.Coerce an Boolean instance to a boolean value.
Logical implication of two boolean operators
right
- right operator.Logical disjunction of two boolean operators
right
- right operator.Identity conversion which returns Boolean.TRUE for a true Boolean and Boolean.FALSE for a false Boolean.