Package org.wildfly.clustering.function
Interface DoublePredicate
- All Superinterfaces:
DoublePredicate
- All Known Implementing Classes:
DoublePredicate.SimpleDoublePredicate
An enhanced double predicate.
- Author:
- Paul Ferraro
-
Nested Class Summary
Nested Classes -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final DoublePredicatestatic final DoublePredicatestatic final DoublePredicatestatic final DoublePredicatestatic final DoublePredicate -
Method Summary
Modifier and TypeMethodDescriptiondefault DoublePredicateand(DoublePredicate other) default DoublePredicatemap(DoubleUnaryOperator mapper) Returns a predicate that applies the specified mapping to its argument before evaluating.default <V> Predicate<V> map(ToDoubleFunction<V> mapper) Returns a predicate that applies the specified mapping to its argument before evaluating.default DoublePredicatenegate()default DoublePredicateor(DoublePredicate other) Methods inherited from interface java.util.function.DoublePredicate
test
-
Field Details
-
ALWAYS
-
NEVER
-
ZERO
-
POSITIVE
-
NEGATIVE
-
-
Method Details
-
and
- Specified by:
andin interfaceDoublePredicate
-
negate
- Specified by:
negatein interfaceDoublePredicate
-
or
- Specified by:
orin interfaceDoublePredicate
-
map
Returns a predicate that applies the specified mapping to its argument before evaluating.- Parameters:
mapper-- Returns:
- a mapped predicate
-
map
Returns a predicate that applies the specified mapping to its argument before evaluating.- Type Parameters:
V- the mapped type- Parameters:
mapper-- Returns:
- a mapped predicate
-