Back to project page Locast-Core-Android.
The source code is released under:
GNU General Public License
If you think the Android project Locast-Core-Android 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.stackoverflow; /*w w w . j ava2 s . co m*/ /** * License: http://creativecommons.org/licenses/by-sa/2.5/ * * @author jon + Alan * @see http://stackoverflow.com/questions/122105/java-what-is-the-best-way-to-filter-a-collection */ public interface Predicate<T> { boolean apply(T in); }