Back to project page RZAndroidBaseUtils.
The source code is released under:
MIT License
If you think the Android project RZAndroidBaseUtils listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.raizlabs.functions; /*from w ww. j a v a2 s. co m*/ /** * Interface for a predicate which evaluates a true or false value for a given * item. * @author Dylan James * * @param <T> The type of item to evaluate. */ public interface Predicate<T> { /** * Evaluates the given item. * @param item The item to evaluate. * @return The true or false value for the given item. */ public boolean evaluate(T item); }