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 andFunctionalInterfacetypes.org.jooq.lambda.fi.util.function This package contains duplicates of the JDK'sFunctionalInterfacetypes from thejava.util.functionpackage, 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 aCheckedDoubleFunctionin aDoubleFunction.static <R> java.util.function.DoubleFunction<R>Unchecked. doubleFunction(CheckedDoubleFunction<R> function)Wrap aCheckedDoubleFunctionin aDoubleFunction.static <R> java.util.function.DoubleFunction<R>Unchecked. doubleFunction(CheckedDoubleFunction<R> function, java.util.function.Consumer<java.lang.Throwable> handler)Wrap aCheckedDoubleFunctionin aDoubleFunctionwith 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)
-