forked from fanruan/easyexcel
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
546 B
31 lines
546 B
7 years ago
|
package com.alibaba.excel.analysis;
|
||
|
|
||
|
import com.alibaba.excel.event.AnalysisEventListener;
|
||
|
import com.alibaba.excel.metadata.Sheet;
|
||
|
import com.alibaba.excel.support.ExcelTypeEnum;
|
||
|
|
||
|
import java.io.InputStream;
|
||
|
import java.util.List;
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
* @author jipengfei
|
||
|
*/
|
||
|
public interface ExcelAnalyser {
|
||
|
|
||
|
void init(InputStream inputStream, ExcelTypeEnum excelTypeEnum, Object custom, AnalysisEventListener eventListener,
|
||
|
boolean trim);
|
||
|
|
||
|
void analysis(Sheet sheetParam);
|
||
|
|
||
|
|
||
|
|
||
|
void analysis();
|
||
|
|
||
|
|
||
|
List<Sheet> getSheets();
|
||
|
|
||
|
|
||
|
|
||
|
}
|