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

org.openlca.io.refdata.CsvRow Maven / Gradle / Ivy

The newest version!
package org.openlca.io.refdata;

import org.apache.commons.csv.CSVRecord;

record CsvRow(CSVRecord record) {

	String get(int i) {
		return Csv.get(record, i);
	}

	double getDouble(int i) {
		return Csv.getDouble(record, i);
	}

	Double getOptionalDouble(int i) {
		return Csv.getOptionalDouble(record, i);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy