| Modifier and Type | Method and Description |
|---|---|
static <T> BinarySQLOperator<T> |
BinarySQLOperator.checked(BinaryOperator<T> operator)
Returns a binary operator that applies the
operator operator to its input, and unwraps any UncheckedSQLException that is thrown
by throwing its cause. |
static <T> BinarySQLOperator<T> |
BinarySQLOperator.maxBy(Comparator<? super T> comparator)
Returns an
BinarySQLOperator which returns the greater of two elements according to the specified Comparator. |
static <T> BinarySQLOperator<T> |
BinarySQLOperator.minBy(Comparator<? super T> comparator)
Returns an
BinarySQLOperator which returns the lesser of two elements according to the specified Comparator. |
| Modifier and Type | Method and Description |
|---|---|
static <T> BinaryOperator<T> |
BinarySQLOperator.unchecked(BinarySQLOperator<T> operator)
Returns a binary operator that applies the
operator operator to its input, and wraps any SQLException that is thrown in an
UncheckedSQLException. |
Copyright © 2017. All rights reserved.