See More

package models; import java.util.HashMap; import configuration.Consts; /** * The Class ModelVariableReadIn. * Just for reading in Strings from csv-row, and returning as needed (e.e. uppercase if needed) * Non-Uppercase for filters only! * * */ public class ModelVariableReadIn { //private final static Logger LOGGER = Logger.getLogger(ModelVariableReadIn.class.getName()); private HashMap myrow; private String[] columns; private String[] filters; public ModelVariableReadIn(HashMap myrow, int filtercolumns, InputFile myinputfile) throws ModelConfigException { this.myrow = myrow; columns = new String[filtercolumns]; filters = new String[filtercolumns]; for (int j=0; j