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

es.usc.citius.hipster.util.Predicate Maven / Gradle / Ivy

There is a newer version: 1.0.1
Show newest version
package es.usc.citius.hipster.util;

/**
 * Definition of predictcate to be used with search iterators implementing the
 * class {@link es.usc.citius.hipster.algorithm.Algorithm}. A predicate can
 * be used to define the stop condition of the algorithm
 * when using the method {@link es.usc.citius.hipster.algorithm.Algorithm#se}
 *
 * @author Adrián González Sieira <[email protected]>
 */
public interface Predicate {

    public boolean apply(T input);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy