| Modifier and Type | Interface and Description |
|---|---|
interface |
BinarySQLOperator<T>
Represents an operation upon two operands of the same type, producing a result of the same type as the operands.
|
| Modifier and Type | Method and Description |
|---|---|
default <V> SQLBiFunction<T,U,V> |
SQLBiFunction.andThen(SQLFunction<? super R,? extends V> after)
Returns a composed function that first applies this function to its input, and then applies the
after function to the result. |
static <T,U,R> SQLBiFunction<T,U,R> |
SQLBiFunction.checked(BiFunction<? super T,? super U,? extends R> function)
Returns a function that applies the
function function to its input, and unwraps any UncheckedSQLException that is thrown by
throwing its cause. |
| Modifier and Type | Method and Description |
|---|---|
static <T,U,R> BiFunction<T,U,R> |
SQLBiFunction.unchecked(SQLBiFunction<? super T,? super U,? extends R> function)
Returns a function that applies the
function function to its input, and wraps any SQLException that is thrown in an
UncheckedSQLException. |
Copyright © 2017. All rights reserved.