C - the column's context typepublic interface Predicate<C>
StandardPredicates,
PredicateSqlGenerator| Modifier and Type | Method and Description |
|---|---|
Predicate<C> |
and(Predicate<C> other)
Combines this predicate and the provided one as a boolean
AND, i.e. |
Predicate<C> |
or(Predicate<C> other)
Combines this predicate with the provided one as a boolean
OR. |
Predicate<C> and(Predicate<C> other)
AND, i.e. this method returns
a predicate which matches entries if both this predicate and the provided other
return a positive result.other - the other predicate to use with this onethis && otherPredicate<C> or(Predicate<C> other)
OR. In other words,
the predicate returned matches all entries which are matched this and/or the
given other predicate.other - the other predicate to use with this onethis || otherCopyright © 2017–2024. All rights reserved.