Package com.strobel.core
Interface Predicate<T>
-
- Type Parameters:
T- the type of input objects provided totest.
public interface Predicate<T>Determines if the input object matches some criteria. *
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleantest(T t)Returntrueif the input object matches some criteria.
-
-
-
Method Detail
-
test
boolean test(T t)
Returntrueif the input object matches some criteria.- Parameters:
t- the input object.- Returns:
trueif the input object matched some criteria.
-
-