@FunctionalInterface public interface CheckedDoublePredicate
DoublePredicate that allows for checked exceptions.| Modifier and Type | Method and Description |
|---|---|
boolean |
test(double value)
Evaluates this predicate on the given argument.
|
static java.util.function.DoublePredicate |
unchecked(CheckedDoublePredicate predicate) |
static java.util.function.DoublePredicate |
unchecked(CheckedDoublePredicate function,
java.util.function.Consumer<Throwable> handler) |
boolean test(double value)
throws Throwable
value - the input argumenttrue if the input argument matches the predicate,
otherwise falseThrowablestatic java.util.function.DoublePredicate unchecked(CheckedDoublePredicate predicate)
Unchecked#doublePredicate(CheckedDoublePredicate)}static java.util.function.DoublePredicate unchecked(CheckedDoublePredicate function, java.util.function.Consumer<Throwable> handler)
Unchecked#doublePredicate(CheckedDoublePredicate, Consumer)}Copyright © 2016. All Rights Reserved.