|
|||||
Previous Next |
The Boolean type the common true / false values.
Operation Summary | |
Boolean
|
=(Boolean rhs)
True if this boolean is the same as rhs. |
Boolean
|
<>(Boolean rhs)
True if either this boolean or rhs is true, but not both. |
Boolean
|
and(Boolean rhs)
True if both this boolean or rhs are true. |
Boolean
|
implies(Boolean rhs)
True if this boolean is false, or if rhs is true. |
Boolean
|
not
True if this boolean is false. |
Boolean
|
or(Boolean rhs)
True if either this boolean or rhs is true. |
String
|
toString A representative character string of this boolean. |
Boolean
|
xor(Boolean rhs)
True if either this boolean or rhs is true, but not both. |
Operations inherited from type OclAny |
=, <>,
oclAsType, oclIsKindOf,
oclIsTypeOf
|
Operations Detail |
public Boolean =(Boolean rhs)
public Boolean <>(Boolean rhs)
public Boolean or(Boolean rhs)
public Boolean xor(Boolean rhs)
public Boolean and(Boolean rhs)
public Boolean not
public Boolean implies(Boolean rhs)
public String toString
|
|||||
Previous Next |