T - the type of the input to the predicatepublic interface IPredicate<T>
This is a functional interface whose functional method is test(Object).
Note that this is a simple copy of Java 8's java.util.function.Predicate to start implementing a more functional style for some of Faktor-IPS' API and will probably be removed once we move the code base to Java 8.
| Modifier and Type | Method and Description |
|---|---|
boolean |
test(T t)
Evaluates this predicate on the given argument.
|
boolean test(T t)
t - the input argumenttrue if the input argument matches the predicate, otherwise falseCopyright © 2021. All rights reserved.