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

ch.inftec.ju.util.function.Predicates Maven / Gradle / Ivy

There is a newer version: 6.1-4
Show newest version
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