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.

33 lines
477 B

package com.alibaba.excel.analysis;
import com.alibaba.excel.metadata.Sheet;
import java.util.List;
/**
* Excel file analyser
*
* @author jipengfei
*/
public interface ExcelAnalyser {
/**
* parse one sheet
*
* @param sheetParam
*/
void analysis(Sheet sheetParam);
/**
* parse all sheets
*/
void analysis();
/**
* get all sheet of workbook
*
* @return all sheets
*/
List<Sheet> getSheets();
}