}
protected List<Object> execute(Criteria criteria){
if(criteria instanceof ArithmeticCriteria){
ArithmeticCriteria arithmeticCriteria = ((ArithmeticCriteria)criteria);
CacheIndex cacheIndex = indexes.get(arithmeticCriteria.getAttributeName());
if(cacheIndex==null){
throw new IndexNotFoundException();
}
return arithmeticCriteria.meets(cacheIndex);
}