public interface DoublePredicate extends java.util.function.DoublePredicate, Try.DoublePredicate<java.lang.RuntimeException>
Modifier and Type | Field and Description |
---|---|
static DoublePredicate |
ALWAYS_FALSE |
static DoublePredicate |
ALWAYS_TRUE |
static DoublePredicate |
IS_NEGATIVE |
static DoublePredicate |
IS_POSITIVE |
static DoublePredicate |
IS_ZERO |
static DoublePredicate |
NOT_NEGATIVE |
static DoublePredicate |
NOT_POSITIVE |
static DoublePredicate |
NOT_ZERO |
Modifier and Type | Method and Description |
---|---|
default DoublePredicate |
and(java.util.function.DoublePredicate other) |
static DoublePredicate |
between(double minValue,
double maxValue) |
static DoublePredicate |
equal(double targetDouble) |
static DoublePredicate |
greaterEqual(double targetDouble) |
static DoublePredicate |
greaterThan(double targetDouble) |
static DoublePredicate |
lessEqual(double targetDouble) |
static DoublePredicate |
lessThan(double targetDouble) |
default DoublePredicate |
negate() |
static DoublePredicate |
notEqual(double targetDouble) |
static DoublePredicate |
of(DoublePredicate predicate)
Returns the specified instance
|
default DoublePredicate |
or(java.util.function.DoublePredicate other) |
boolean |
test(double value) |
static final DoublePredicate ALWAYS_TRUE
static final DoublePredicate ALWAYS_FALSE
static final DoublePredicate IS_ZERO
static final DoublePredicate NOT_ZERO
static final DoublePredicate IS_POSITIVE
static final DoublePredicate NOT_POSITIVE
static final DoublePredicate IS_NEGATIVE
static final DoublePredicate NOT_NEGATIVE
boolean test(double value)
test
in interface java.util.function.DoublePredicate
test
in interface Try.DoublePredicate<java.lang.RuntimeException>
default DoublePredicate negate()
negate
in interface java.util.function.DoublePredicate
default DoublePredicate and(java.util.function.DoublePredicate other)
and
in interface java.util.function.DoublePredicate
default DoublePredicate or(java.util.function.DoublePredicate other)
or
in interface java.util.function.DoublePredicate
static DoublePredicate of(DoublePredicate predicate)
predicate
- static DoublePredicate equal(double targetDouble)
static DoublePredicate notEqual(double targetDouble)
static DoublePredicate greaterThan(double targetDouble)
static DoublePredicate greaterEqual(double targetDouble)
static DoublePredicate lessThan(double targetDouble)
static DoublePredicate lessEqual(double targetDouble)
static DoublePredicate between(double minValue, double maxValue)