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 andFunctionalInterfacetypes.org.jooq.lambda.fi.util This package contains duplicates of the JDK'sFunctionalInterfacetypes from thejava.utilpackage, 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 aCheckedComparatorin aComparator.static <T> java.util.Comparator<T>Unchecked. comparator(CheckedComparator<T> comparator)Wrap aCheckedComparatorin aComparator.static <T> java.util.Comparator<T>Unchecked. comparator(CheckedComparator<T> comparator, java.util.function.Consumer<java.lang.Throwable> handler)Wrap aCheckedComparatorin aComparatorwith 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)
-