ExcelReadExecutor.java
410 Bytes
package com.taover.easyexcel.analysis;
import java.util.List;
import com.taover.easyexcel.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.
     */
    void execute();
}