| 
 | Groovy JDK | |||||||||
| Method Summary | |
|---|---|
| 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 | 
| Method Detail | 
|---|
public Boolean and(Boolean right)
right -  right operator.public boolean asBoolean()
public Boolean implies(Boolean right)
right -  right operator.public Boolean or(Boolean right)
right -  right operator.public Boolean toBoolean()
public Boolean xor(Boolean right)
right -  right operator.| 
 | Groovy JDK | |||||||||