mirror of https://github.com/alibaba/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
609 B
31 lines
609 B
package com.alibaba.excel.write; |
|
|
|
import com.alibaba.excel.metadata.Sheet; |
|
import com.alibaba.excel.metadata.Table; |
|
import com.alibaba.excel.support.ExcelTypeEnum; |
|
|
|
import java.io.InputStream; |
|
import java.io.OutputStream; |
|
import java.util.List; |
|
|
|
/** |
|
* |
|
* @author jipengfei |
|
*/ |
|
public interface ExcelBuilder { |
|
|
|
|
|
void init(InputStream templateInputStream, OutputStream out, ExcelTypeEnum excelType, boolean needHead); |
|
|
|
|
|
void addContent(List data, int startRow); |
|
|
|
|
|
void addContent(List data, Sheet sheetParam); |
|
|
|
|
|
void addContent(List data, Sheet sheetParam, Table table); |
|
|
|
|
|
void finish(); |
|
}
|
|
|