Uses of Interface
org.jooq.lambda.fi.util.function.CheckedFunction
-
Packages that use CheckedFunction 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 CheckedFunction in org.jooq.lambda
Methods in org.jooq.lambda with parameters of type CheckedFunction Modifier and Type Method Description static <T,R>
java.util.function.Function<T,R>Sneaky. function(CheckedFunction<T,R> function)
Wrap aCheckedFunction
in aFunction
.static <T,R>
java.util.function.Function<T,R>Unchecked. function(CheckedFunction<T,R> function)
Wrap aCheckedFunction
in aFunction
.static <T,R>
java.util.function.Function<T,R>Unchecked. function(CheckedFunction<T,R> function, java.util.function.Consumer<java.lang.Throwable> handler)
Wrap aCheckedFunction
in aFunction
with a custom handler for checked exceptions. -
Uses of CheckedFunction in org.jooq.lambda.fi.util.function
Subinterfaces of CheckedFunction in org.jooq.lambda.fi.util.function Modifier and Type Interface Description interface
CheckedUnaryOperator<T>
AUnaryOperator
that allows for checked exceptions.Methods in org.jooq.lambda.fi.util.function with parameters of type CheckedFunction Modifier and Type Method Description static <T,R>
java.util.function.Function<T,R>CheckedFunction. sneaky(CheckedFunction<T,R> function)
static <T,R>
java.util.function.Function<T,R>CheckedFunction. unchecked(CheckedFunction<T,R> function)
static <T,R>
java.util.function.Function<T,R>CheckedFunction. unchecked(CheckedFunction<T,R> function, java.util.function.Consumer<java.lang.Throwable> handler)
-