![JAR search and dependency download from the Maven repository](/logo.png)
org.ak80.sota.function.Predicate Maven / Gradle / Ivy
package org.ak80.sota.function;
/**
* Functional interface for a predicate
*
* @param type of object to operate on
*/
@FunctionalInterface
public interface Predicate {
/**
* Returns true or false depending on the object
*
* @param object the object to test
* @return true or false
*/
boolean test(T object);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy