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

microsoft.exchange.webservices.data.IPredicate Maven / Gradle / Ivy

Go to download

The source came from http://archive.msdn.microsoft.com/ewsjavaapi Support for Maven has been added.

The newest version!
package microsoft.exchange.webservices.data;

/**
 * The Interface IPredicate.
 * 
 * @param 
 *            The type of the object to compare.
 */
interface IPredicate {

	/**
	 * Represents the method that defines a
	 *  set of criteria and determines whether
     *     the specified object meets those criteria.
	 * 
	 * @param obj The object to compare against 
	 * the criteria defined within the method represented
     *     by this delegate.
	 * @return true if obj meets the criteria 
	 * defined within the method represented by this
     *     delegate; otherwise, false.
	 * @throws ServiceLocalException 
	 */
	boolean predicate(T obj) throws ServiceLocalException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy