
ch.sbb.releasetrain.utils.csv.CSVXLSReader Maven / Gradle / Ivy
/*
* Copyright (C) Schweizerische Bundesbahnen SBB, 2016.
*/
package ch.sbb.releasetrain.utils.csv;
import java.util.List;
import java.util.Map;
/**
* Gets access to a xls-csv file
*
* @author u203244 (Daniel Marthaler)
* @since 0.0.1, 2016
*/
public interface CSVXLSReader {
/**
* return's a column as List
*/
List getListFromColoumn(String spalte);
/**
* returns 2 coloums as Map getMapFromXLS("id","ear")
*/
Map getMapFromXLS(String spalte1, String spalte2);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy