. */ namespace Volkszaehler\Interpreter; /** * * @author Steffen Vogel * */ interface InterpreterInterface { function getConsumption(); function getValues($tuples = NULL, $groupBy = NULL); function getMin(); function getMax(); function getAverage(); function getEntity(); }