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.
27 lines
400 B
27 lines
400 B
6 years ago
|
package com.alibaba.excel.analysis;
|
||
|
|
||
|
import java.util.List;
|
||
|
|
||
6 years ago
|
import com.alibaba.excel.read.metadata.ReadSheet;
|
||
6 years ago
|
|
||
|
/**
|
||
|
* Excel file Executor
|
||
|
*
|
||
6 years ago
|
* @author Jiaju Zhuang
|
||
6 years ago
|
*/
|
||
6 years ago
|
public interface ExcelReadExecutor {
|
||
6 years ago
|
|
||
6 years ago
|
/**
|
||
|
* Returns the actual sheet in excel
|
||
6 years ago
|
*
|
||
6 years ago
|
* @return Actual sheet in excel
|
||
6 years ago
|
*/
|
||
6 years ago
|
List<ReadSheet> sheetList();
|
||
6 years ago
|
|
||
6 years ago
|
/**
|
||
|
* Read sheet
|
||
|
*/
|
||
6 years ago
|
void execute();
|
||
|
|
||
|
}
|