Esempio n. 1
0
 /**
  * Helper method to load the Field metadata
  *
  * @throws Exception
  */
 private void loadColumns() throws Exception {
   for (String name : csv.colnames()) {
     Field f = new Field(name);
     columns.add(f);
   }
 }