
ch.inftec.ju.util.function.Predicates Maven / Gradle / Ivy
package ch.inftec.ju.util.function;
public class Predicates {
public static final Predicate ALWAYS_TRUE = new Predicate() {
@Override
public boolean test(Object o) {
return true;
}
};
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy