![JAR search and dependency download from the Maven repository](/logo.png)
com.ludii.excel.parse.ExcelImportCellValueReader Maven / Gradle / Ivy
package com.ludii.excel.parse;
import java.util.List;
/**
* @author 陆迪
* @date 2022/3/24
* 读取excel单元格的数据
*/
public interface ExcelImportCellValueReader extends AutoCloseable {
/**
* 按顺序获取表格标题列表数据
*
* @return 标题列
*/
List getHeaderValueList();
/**
* 读取单元格的值
*
* @return 单元格的值
*/
List> getCellValueListList();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy