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

com.swak.excel.metadata.ExcelRow Maven / Gradle / Ivy

The newest version!
package com.swak.excel.metadata;

import java.util.List;
import java.util.Map;

public interface ExcelRow {

	Integer getRowIndex();

	String getSheetName();

	void setSheetName(String sheetName);

	void setRowIndex(Integer rowIndex);

	Map> getRowHead();

	void setRowHead(Map> rowHead);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy