Package akka.japi.function
Interface Predicate<T>
- 
- All Superinterfaces:
 java.io.Serializable
public interface Predicate<T> extends java.io.SerializableJava API: Defines a criteria and determines whether the parameter meets this criteria.Serializableis needed to be able to grab line number for Java 8 lambdas. Supports throwingExceptionin the apply, which thejava.util.function.Predicatecounterpart does not. 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleantest(T param) 
 - 
 
- 
- 
Method Detail
- 
test
boolean test(T param)
 
 - 
 
 -