public boolean moveNext()

in src/main/java/net/hydromatic/optiq/impl/csv/CsvEnumerator.java [70:83]


  public boolean moveNext() {
    try {
      final String[] strings = reader.readNext();
      if (strings == null) {
        current = null;
        reader.close();
        return false;
      }
      current = rowConverter.convertRow(strings);
      return true;
    } catch (IOException e) {
      throw new RuntimeException(e);
    }
  }