| Modifier and Type | Method and Description |
|---|---|
static <T> UnarySQLOperator<T> |
UnarySQLOperator.checked(UnaryOperator<T> operator)
Returns a unary operator that applies the
operator operator to its input, and unwraps any UncheckedSQLException that is thrown
by throwing its cause. |
static <T> UnarySQLOperator<T> |
UnarySQLOperator.identity()
Returns a unary operator that always returns its input argument.
|
| Modifier and Type | Method and Description |
|---|---|
static <T> UnaryOperator<T> |
UnarySQLOperator.unchecked(UnarySQLOperator<T> operator)
Returns a unary operator that applies the
operator operator to its input, and wraps any SQLException that is thrown in an
UncheckedSQLException. |
Copyright © 2017. All rights reserved.