com.jdroid.java.collections
Interface Predicate<T>

Type Parameters:
T -

public interface Predicate<T>

Determines a true or false value for a given input.


Method Summary
 Boolean apply(T input)
          Returns the result of applying this predicate to input.
 

Method Detail

apply

Boolean apply(T input)
Returns the result of applying this predicate to input. This method is generally expected, but not absolutely required, to have the following properties:

Parameters:
input - The input to evaluate
Returns:
True or false


Copyright © 2014. All rights reserved.