Uses of Interface
org.jooq.lambda.fi.util.function.CheckedUnaryOperator
-
Packages that use CheckedUnaryOperator 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 CheckedUnaryOperator in org.jooq.lambda
Methods in org.jooq.lambda with parameters of type CheckedUnaryOperator Modifier and Type Method Description static <T> java.util.function.UnaryOperator<T>
Sneaky. unaryOperator(CheckedUnaryOperator<T> operator)
Wrap aCheckedUnaryOperator
in aUnaryOperator
.static <T> java.util.function.UnaryOperator<T>
Unchecked. unaryOperator(CheckedUnaryOperator<T> operator)
Wrap aCheckedUnaryOperator
in aUnaryOperator
.static <T> java.util.function.UnaryOperator<T>
Unchecked. unaryOperator(CheckedUnaryOperator<T> operator, java.util.function.Consumer<java.lang.Throwable> handler)
Wrap aCheckedUnaryOperator
in aUnaryOperator
with a custom handler for checked exceptions. -
Uses of CheckedUnaryOperator in org.jooq.lambda.fi.util.function
Methods in org.jooq.lambda.fi.util.function with parameters of type CheckedUnaryOperator Modifier and Type Method Description static <T> java.util.function.UnaryOperator<T>
CheckedUnaryOperator. sneaky(CheckedUnaryOperator<T> operator)
static <T> java.util.function.UnaryOperator<T>
CheckedUnaryOperator. unchecked(CheckedUnaryOperator<T> operator)
static <T> java.util.function.UnaryOperator<T>
CheckedUnaryOperator. unchecked(CheckedUnaryOperator<T> operator, java.util.function.Consumer<java.lang.Throwable> handler)
-