E
- The kind of thrown exception or error.@FunctionalInterface
public interface FailableDoublePredicate<E extends java.lang.Throwable>
DoublePredicate
that declares a Throwable
.Modifier and Type | Field and Description |
---|---|
static FailableDoublePredicate |
FALSE
FALSE singleton
|
static FailableDoublePredicate |
TRUE
TRUE singleton
|
Modifier and Type | Method and Description |
---|---|
default FailableDoublePredicate<E> |
and(FailableDoublePredicate<E> other)
Returns a composed
FailableDoublePredicate like DoublePredicate.and(DoublePredicate) . |
static <E extends java.lang.Throwable> |
falsePredicate()
Returns The FALSE singleton.
|
default FailableDoublePredicate<E> |
negate()
Returns a predicate that negates this predicate.
|
default FailableDoublePredicate<E> |
or(FailableDoublePredicate<E> other)
Returns a composed
FailableDoublePredicate like DoublePredicate.and(DoublePredicate) . |
boolean |
test(double value)
Tests the predicate.
|
static <E extends java.lang.Throwable> |
truePredicate()
Returns The TRUE singleton.
|
static final FailableDoublePredicate FALSE
static final FailableDoublePredicate TRUE
static <E extends java.lang.Throwable> FailableDoublePredicate<E> falsePredicate()
E
- The kind of thrown exception or error.static <E extends java.lang.Throwable> FailableDoublePredicate<E> truePredicate()
E
- The kind of thrown exception or error.default FailableDoublePredicate<E> and(FailableDoublePredicate<E> other)
FailableDoublePredicate
like DoublePredicate.and(DoublePredicate)
.other
- a predicate that will be logically-ANDed with this predicate.FailableDoublePredicate
like DoublePredicate.and(DoublePredicate)
.java.lang.NullPointerException
- if other is nulldefault FailableDoublePredicate<E> negate()
default FailableDoublePredicate<E> or(FailableDoublePredicate<E> other)
FailableDoublePredicate
like DoublePredicate.and(DoublePredicate)
.other
- a predicate that will be logically-ORed with this predicate.FailableDoublePredicate
like DoublePredicate.and(DoublePredicate)
.java.lang.NullPointerException
- if other is nullboolean test(double value) throws E extends java.lang.Throwable
value
- the parameter for the predicate to accept.true
if the input argument matches the predicate, false
otherwise.E
- Thrown when the consumer fails.E extends java.lang.Throwable
Copyright © 2010 - 2023 Adobe. All Rights Reserved