rinde.sim.util.spec.ISpecification Maven / Gradle / Ivy
/**
*
*/
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();
}