Uses of Interface
org.jooq.lambda.fi.util.function.CheckedDoublePredicate
-
Packages that use CheckedDoublePredicate 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 CheckedDoublePredicate in org.jooq.lambda
Methods in org.jooq.lambda with parameters of type CheckedDoublePredicate Modifier and Type Method Description static java.util.function.DoublePredicate
Sneaky. doublePredicate(CheckedDoublePredicate predicate)
Wrap aCheckedDoublePredicate
in aDoublePredicate
.static java.util.function.DoublePredicate
Unchecked. doublePredicate(CheckedDoublePredicate predicate)
Wrap aCheckedDoublePredicate
in aDoublePredicate
.static java.util.function.DoublePredicate
Unchecked. doublePredicate(CheckedDoublePredicate function, java.util.function.Consumer<java.lang.Throwable> handler)
Wrap aCheckedDoublePredicate
in aDoublePredicate
with a custom handler for checked exceptions. -
Uses of CheckedDoublePredicate in org.jooq.lambda.fi.util.function
Methods in org.jooq.lambda.fi.util.function with parameters of type CheckedDoublePredicate Modifier and Type Method Description static java.util.function.DoublePredicate
CheckedDoublePredicate. sneaky(CheckedDoublePredicate predicate)
static java.util.function.DoublePredicate
CheckedDoublePredicate. unchecked(CheckedDoublePredicate predicate)
static java.util.function.DoublePredicate
CheckedDoublePredicate. unchecked(CheckedDoublePredicate function, java.util.function.Consumer<java.lang.Throwable> handler)
-