Uses of Interface
org.jooq.lambda.fi.util.function.CheckedBiFunction
-
Packages that use CheckedBiFunction Package Description org.jooq.lambda This package contains useful extensions for interoperation with Java 8's lambda expressions andFunctionalInterface
types.org.jooq.lambda.fi.util.function This package contains duplicates of the JDK'sFunctionalInterface
types from thejava.util.function
package, allowing to throw checked Exceptions that can be handled inUnchecked
. -
-
Uses of CheckedBiFunction in org.jooq.lambda
Methods in org.jooq.lambda with parameters of type CheckedBiFunction Modifier and Type Method Description static <T,U,R>
java.util.function.BiFunction<T,U,R>Sneaky. biFunction(CheckedBiFunction<T,U,R> function)
Wrap aCheckedBiFunction
in aBiFunction
.static <T,U,R>
java.util.function.BiFunction<T,U,R>Unchecked. biFunction(CheckedBiFunction<T,U,R> function)
Wrap aCheckedBiFunction
in aBiFunction
.static <T,U,R>
java.util.function.BiFunction<T,U,R>Unchecked. biFunction(CheckedBiFunction<T,U,R> function, java.util.function.Consumer<java.lang.Throwable> handler)
Wrap aCheckedBiFunction
in aBiFunction
with a custom handler for checked exceptions. -
Uses of CheckedBiFunction in org.jooq.lambda.fi.util.function
Subinterfaces of CheckedBiFunction in org.jooq.lambda.fi.util.function Modifier and Type Interface Description interface
CheckedBinaryOperator<T>
ABinaryOperator
that allows for checked exceptions.Methods in org.jooq.lambda.fi.util.function with parameters of type CheckedBiFunction Modifier and Type Method Description static <T,U,R>
java.util.function.BiFunction<T,U,R>CheckedBiFunction. sneaky(CheckedBiFunction<T,U,R> function)
static <T,U,R>
java.util.function.BiFunction<T,U,R>CheckedBiFunction. unchecked(CheckedBiFunction<T,U,R> function)
static <T,U,R>
java.util.function.BiFunction<T,U,R>CheckedBiFunction. unchecked(CheckedBiFunction<T,U,R> function, java.util.function.Consumer<java.lang.Throwable> handler)
-