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.

22 lines
330 B

package com.alibaba.excel.read.builder;
import com.alibaba.excel.write.metadata.Workbook;
/**
* Build ExcelWriter
*
* @author zhuangjiaju
*/
public class ExcelReaderBuilder {
/**
* Workbook
*/
private Workbook workbook;
public ExcelReaderBuilder() {
this.workbook = new Workbook();
}
}