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

io.hawt.log.support.Predicate Maven / Gradle / Ivy

There is a newer version: 4.2.0
Show newest version
package io.hawt.log.support;

/**
 * Applies a predicate to a type; can be replaced by the Predicate from Guava later maybe?
 */
public interface Predicate {

    boolean matches(T t);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy