/** * */ package org.gcube.dataaccess.spd.havingengine; /** * @author "Federico De Faveri defaveri@isti.cnr.it" * * @param the type of the element checked. */ public interface HavingStatement { /** * Checks if the passed element can be accepted. * @param element the element to check. * @return true if it is accepted, false otherwise. */ public boolean accept(T element); }