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