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

rinde.sim.util.spec.ISpecification Maven / Gradle / Ivy

There is a newer version: 4.4.6
Show newest version
/**
 * 
 */
package rinde.sim.util.spec;

/**
 * @author Rinde van Lon 
 * 
 */
public interface ISpecification> {

    boolean isSatisfiedBy(T context);

    U and(U other);

    U or(U other);

    U not();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy