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

jodd.util.Predicate Maven / Gradle / Ivy

There is a newer version: 3.4.1
Show newest version
// Copyright (c) 2003-2010, Jodd Team (jodd.org). All Rights Reserved.

package jodd.util;

/**
 * Defines a functor interface implemented by classes that perform a predicate test on an object.
 */
public interface Predicate {
	/**
	 * Uses the specified parameter to perform a test that returns boolean.
	 */
	boolean predicate(T arg);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy