Uses of Interface
org.jooq.lambda.fi.util.CheckedComparator
-
Packages that use CheckedComparator 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 This package contains duplicates of the JDK'sFunctionalInterface
types from thejava.util
package, allowing to throw checked Exceptions that can be handled inUnchecked
. -
-
Uses of CheckedComparator in org.jooq.lambda
Methods in org.jooq.lambda with parameters of type CheckedComparator Modifier and Type Method Description static <T> java.util.Comparator<T>
Sneaky. comparator(CheckedComparator<T> comparator)
Wrap aCheckedComparator
in aComparator
.static <T> java.util.Comparator<T>
Unchecked. comparator(CheckedComparator<T> comparator)
Wrap aCheckedComparator
in aComparator
.static <T> java.util.Comparator<T>
Unchecked. comparator(CheckedComparator<T> comparator, java.util.function.Consumer<java.lang.Throwable> handler)
Wrap aCheckedComparator
in aComparator
with a custom handler for checked exceptions. -
Uses of CheckedComparator in org.jooq.lambda.fi.util
Methods in org.jooq.lambda.fi.util with parameters of type CheckedComparator Modifier and Type Method Description static <T> java.util.Comparator<T>
CheckedComparator. sneaky(CheckedComparator<T> comparator)
static <T> java.util.Comparator<T>
CheckedComparator. unchecked(CheckedComparator<T> comparator)
static <T> java.util.Comparator<T>
CheckedComparator. unchecked(CheckedComparator<T> comparator, java.util.function.Consumer<java.lang.Throwable> handler)
-