| Modifier and Type | Method and Description |
|---|---|
default SQLBiPredicate<T,U> |
SQLBiPredicate.and(SQLBiPredicate<? super T,? super U> other)
Returns a composed predicate that represents a short-circuiting logical AND of this predicate and another.
|
static <T,U> SQLBiPredicate<T,U> |
SQLBiPredicate.checked(BiPredicate<? super T,? super U> predicate)
Returns a predicate that evaluates the
predicate predicate, and unwraps any UncheckedSQLException that is thrown by
throwing its cause. |
default SQLBiPredicate<T,U> |
SQLBiPredicate.negate()
Returns a predicate that represents the logical negation of this predicate.
|
default SQLBiPredicate<T,U> |
SQLBiPredicate.or(SQLBiPredicate<? super T,? super U> other)
Returns a composed predicate that represents a short-circuiting logical OR of this predicate and another.
|
| Modifier and Type | Method and Description |
|---|---|
default SQLBiPredicate<T,U> |
SQLBiPredicate.and(SQLBiPredicate<? super T,? super U> other)
Returns a composed predicate that represents a short-circuiting logical AND of this predicate and another.
|
default SQLBiPredicate<T,U> |
SQLBiPredicate.or(SQLBiPredicate<? super T,? super U> other)
Returns a composed predicate that represents a short-circuiting logical OR of this predicate and another.
|
static <T,U> BiPredicate<T,U> |
SQLBiPredicate.unchecked(SQLBiPredicate<? super T,? super U> predicate)
Returns a predicate that evaluates the
predicate predicate, and wraps any SQLException that is thrown in an
UncheckedSQLException. |
Copyright © 2017. All rights reserved.