io.hawt.log.support.Predicate Maven / Gradle / Ivy
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);
}
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);
}