Uses of Interface
org.jooq.lambda.fi.util.function.CheckedDoubleFunction
-
Packages that use CheckedDoubleFunction 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 CheckedDoubleFunction in org.jooq.lambda
Methods in org.jooq.lambda with parameters of type CheckedDoubleFunction Modifier and Type Method Description static <R> java.util.function.DoubleFunction<R>
Sneaky. doubleFunction(CheckedDoubleFunction<R> function)
Wrap aCheckedDoubleFunction
in aDoubleFunction
.static <R> java.util.function.DoubleFunction<R>
Unchecked. doubleFunction(CheckedDoubleFunction<R> function)
Wrap aCheckedDoubleFunction
in aDoubleFunction
.static <R> java.util.function.DoubleFunction<R>
Unchecked. doubleFunction(CheckedDoubleFunction<R> function, java.util.function.Consumer<java.lang.Throwable> handler)
Wrap aCheckedDoubleFunction
in aDoubleFunction
with a custom handler for checked exceptions. -
Uses of CheckedDoubleFunction in org.jooq.lambda.fi.util.function
Methods in org.jooq.lambda.fi.util.function with parameters of type CheckedDoubleFunction Modifier and Type Method Description static <R> java.util.function.DoubleFunction<R>
CheckedDoubleFunction. sneaky(CheckedDoubleFunction<R> function)
static <R> java.util.function.DoubleFunction<R>
CheckedDoubleFunction. unchecked(CheckedDoubleFunction<R> function)
static <R> java.util.function.DoubleFunction<R>
CheckedDoubleFunction. unchecked(CheckedDoubleFunction<R> function, java.util.function.Consumer<java.lang.Throwable> handler)
-