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

core.helpers.csvHelper.CsvObject Maven / Gradle / Ivy

package core.helpers.csvHelper;

public class CsvObject {
	String path;
	String csvFile;
	String[] value;
	int row;
	int column;

	public CsvObject withCsvPath(String path) {
		this.path = path;
		return this;
	}

	public CsvObject withCsvFile(String csvFile) {
		this.csvFile = csvFile;
		return this;
	}

	public CsvObject withValue(String[] value) {
		this.value = value;
		return this;
	}

	public CsvObject withRow(int row) {
		this.row = row;
		return this;
	}

	public CsvObject withColumn(int column) {
		this.column = column;
		return this;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy