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.
52 lines
1.3 KiB
52 lines
1.3 KiB
6 years ago
|
package com.alibaba.excel.write.metadata;
|
||
|
|
||
|
import java.util.ArrayList;
|
||
|
import java.util.List;
|
||
|
|
||
|
import com.alibaba.excel.metadata.BasicParameter;
|
||
|
import com.alibaba.excel.write.handler.WriteHandler;
|
||
|
|
||
|
/**
|
||
|
* Write basic parameter
|
||
|
*
|
||
|
* @author zhuangjiaju
|
||
|
**/
|
||
|
public class WriteBasicParameter extends BasicParameter {
|
||
|
/**
|
||
|
* Writes the head relative to the existing contents of the sheet. Indexes are zero-based.
|
||
|
*/
|
||
|
private Integer relativeHeadRowIndex;
|
||
|
/**
|
||
|
* Need Head
|
||
|
*/
|
||
|
private Boolean needHead;
|
||
|
/**
|
||
|
* Custom type handler override the default
|
||
|
*/
|
||
|
private List<WriteHandler> customWriteHandlerList = new ArrayList<WriteHandler>();
|
||
|
|
||
|
public Integer getRelativeHeadRowIndex() {
|
||
|
return relativeHeadRowIndex;
|
||
|
}
|
||
|
|
||
|
public void setRelativeHeadRowIndex(Integer relativeHeadRowIndex) {
|
||
|
this.relativeHeadRowIndex = relativeHeadRowIndex;
|
||
|
}
|
||
|
|
||
|
public Boolean getNeedHead() {
|
||
|
return needHead;
|
||
|
}
|
||
|
|
||
|
public void setNeedHead(Boolean needHead) {
|
||
|
this.needHead = needHead;
|
||
|
}
|
||
|
|
||
|
public List<WriteHandler> getCustomWriteHandlerList() {
|
||
|
return customWriteHandlerList;
|
||
|
}
|
||
|
|
||
|
public void setCustomWriteHandlerList(List<WriteHandler> customWriteHandlerList) {
|
||
|
this.customWriteHandlerList = customWriteHandlerList;
|
||
|
}
|
||
|
}
|