com.zhongweixian.excel.imports.sax.parse.ISaxRowRead Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of poi-api Show documentation
Show all versions of poi-api Show documentation
poi-api project for Spring Boot
The newest version!
package com.zhongweixian.excel.imports.sax.parse;
import com.zhongweixian.excel.imports.sax.SaxReadCellEntity;
import java.util.List;
/**
* @author : caoliang
* @date : 2017/11/14 下午2:36
*/
public interface ISaxRowRead {
/**
* 获取返回数据
*
* @param
* @return
*/
List getList();
/**
* 解析数据
*
* @param index
* @param datas
*/
void parse(int index, List datas);
}