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

com.ludii.excel.parse.ExcelImportCellValueReader Maven / Gradle / Ivy

There is a newer version: 1.1.0
Show newest version
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