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.

54 lines
1.4 KiB

7 years ago
package com.alibaba.excel.write;
import com.alibaba.excel.metadata.Sheet;
import com.alibaba.excel.metadata.Table;
import java.util.List;
7 years ago
/**
* @author jipengfei
*/
public interface ExcelBuilder {
/**
* workBook increase data
*
* @param data List<List<String>> or List<? extends BaseRowModel>
* @param startRow Start row number
*/
void addContent(List data, int startRow);
/**
* WorkBook increase data
*
* @param data List<List<String>> or List<? extends BaseRowModel>
* @param sheetParam Write the sheet
*/
7 years ago
void addContent(List data, Sheet sheetParam);
/**
* WorkBook increase data
*
* @param data List<List<String>> or List<? extends BaseRowModel>
* @param sheetParam Write the sheet
* @param table Write the table
*/
7 years ago
void addContent(List data, Sheet sheetParam, Table table);
/**
* Creates new cell range. Indexes are zero-based.
*
* @param firstRow Index of first row
* @param lastRow Index of last row (inclusive), must be equal to or larger than {@code firstRow}
* @param firstCol Index of first column
* @param lastCol Index of last column (inclusive), must be equal to or larger than {@code firstCol}
*/
void merge(int firstRow, int lastRow, int firstCol, int lastCol);
/**
* Close io
*/
7 years ago
void finish();
}