All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.davfx.csv.CsvKeyedReader Maven / Gradle / Ivy

package com.davfx.csv;

import java.io.IOException;

public interface CsvKeyedReader {
	Iterable keys();
	
	interface Line {
		String get(String key);
		int number();
	}
	
	Line next() throws IOException;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy