T - the type of this objectpublic interface OrNot<T extends OrNot<T>> extends Not, Or<T>
| Modifier and Type | Method and Description |
|---|---|
OrNot<T> |
not()
Gets the complement of this object.
|
OrNot<T> |
or(T other)
Unions this object with another object to produce a combined result.
|
default OrNot<T> |
orNot(T other)
Subtracts the other object from this object to produce the complement of a combined result.
|
default OrNot<T> orNot(T other)
~(A - B) or the complement of the relative complement.other - the subtrahend objectother
object being subtracted from this objectOrNot<T> not()
Not~A or a logical NOT.