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.
30 lines
652 B
30 lines
652 B
package com.alibaba.excel.analysis; |
|
|
|
import java.util.List; |
|
|
|
import com.alibaba.excel.read.metadata.ReadSheet; |
|
|
|
/** |
|
* Excel file Executor |
|
* |
|
* @author Jiaju Zhuang |
|
*/ |
|
public interface ExcelReadExecutor { |
|
|
|
/** |
|
* Returns the actual sheet in excel |
|
* |
|
* @return Actual sheet in excel |
|
*/ |
|
List<ReadSheet> sheetList(); |
|
|
|
/** |
|
* Read the sheet. |
|
* |
|
* @param readSheetList |
|
* Which sheets you need to read. |
|
* @param readAll |
|
* The <code>readSheetList</code> parameter is ignored, and all sheets are read. |
|
*/ |
|
void execute(List<ReadSheet> readSheetList, Boolean readAll); |
|
}
|
|
|