@Override
 public boolean hasNext() throws IOException {
   return reader.hasNext();
 }
 @Override
 public SimpleFeature next() throws IOException, IllegalArgumentException, NoSuchElementException {
   return (SimpleFeature) reader.next();
 }