| Modifier and Type | Method and Description |
|---|---|
default SQLPredicate<T> |
SQLPredicate.and(SQLPredicate<? super T> other)
Returns a composed predicate that represents a short-circuiting logical AND of this predicate and another.
|
static <T> SQLPredicate<T> |
SQLPredicate.checked(Predicate<? super T> predicate)
Returns a predicate that evaluates the
predicate predicate, and unwraps any UncheckedSQLException that is thrown by
throwing its cause. |
static <T> SQLPredicate<T> |
SQLPredicate.isEqual(Object targetRef)
Returns a predicate that tests if two arguments are equal according to
Objects.equals(Object, Object). |
default SQLPredicate<T> |
SQLPredicate.negate()
Returns a predicate that represents the logical negation of this predicate.
|
default SQLPredicate<T> |
SQLPredicate.or(SQLPredicate<? super T> other)
Returns a composed predicate that represents a short-circuiting logical OR of this predicate and another.
|
| Modifier and Type | Method and Description |
|---|---|
default SQLPredicate<T> |
SQLPredicate.and(SQLPredicate<? super T> other)
Returns a composed predicate that represents a short-circuiting logical AND of this predicate and another.
|
default SQLPredicate<T> |
SQLPredicate.or(SQLPredicate<? super T> other)
Returns a composed predicate that represents a short-circuiting logical OR of this predicate and another.
|
static <T> Predicate<T> |
SQLPredicate.unchecked(SQLPredicate<? super T> predicate)
Returns a predicate that evaluates the
predicate predicate, and wraps any SQLException that is thrown in an
UncheckedSQLException. |
Copyright © 2017. All rights reserved.