Package com.speedment.common.function
Interface BooleanPredicate
-
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface BooleanPredicate
APredicatespecialized for primitive boolean values.- Since:
- 1.0.0
- Author:
- Emil Forslund
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default BooleanPredicateand(BooleanPredicate ip)default BooleanPredicatenegate()default BooleanPredicateor(BooleanPredicate ip)booleantest(boolean b)
-
-
-
Method Detail
-
test
boolean test(boolean b)
-
and
default BooleanPredicate and(BooleanPredicate ip)
-
negate
default BooleanPredicate negate()
-
or
default BooleanPredicate or(BooleanPredicate ip)
-
-