Uses of Interface
org.jooq.lambda.fi.util.function.CheckedFunction
Packages that use CheckedFunction
Package
Description
This package contains useful extensions for interoperation with Java 8's lambda expressions and
FunctionalInterface
types.This package contains duplicates of the JDK's
FunctionalInterface
types
from the java.util.function
package, allowing to throw checked Exceptions
that can be handled in Unchecked
.-
Uses of CheckedFunction in org.jooq.lambda
Methods in org.jooq.lambda with parameters of type CheckedFunctionModifier and TypeMethodDescriptionstatic <T,
R> Function <T, R> Sneaky.function
(CheckedFunction<T, R> function) Wrap aCheckedFunction
in aFunction
.static <T,
R> Function <T, R> Unchecked.function
(CheckedFunction<T, R> function) Wrap aCheckedFunction
in aFunction
.static <T,
R> Function <T, R> Unchecked.function
(CheckedFunction<T, R> function, Consumer<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.functionModifier and TypeInterfaceDescriptioninterface
AUnaryOperator
that allows for checked exceptions.Methods in org.jooq.lambda.fi.util.function with parameters of type CheckedFunctionModifier and TypeMethodDescriptionstatic <T,
R> Function <T, R> CheckedFunction.sneaky
(CheckedFunction<T, R> function) static <T,
R> Function <T, R> CheckedFunction.unchecked
(CheckedFunction<T, R> function) static <T,
R> Function <T, R> CheckedFunction.unchecked
(CheckedFunction<T, R> function, Consumer<Throwable> handler)