All Downloads are FREE. Search and download functionalities are using the official Maven repository.

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