forked from fanruan/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.
83 lines
2.1 KiB
83 lines
2.1 KiB
package com.alibaba.excel.metadata; |
|
|
|
import java.lang.reflect.Field; |
|
import java.util.ArrayList; |
|
import java.util.List; |
|
|
|
import com.alibaba.excel.exception.ExcelGenerateException; |
|
import com.alibaba.excel.metadata.property.ColumnWidthProperty; |
|
import com.alibaba.excel.metadata.property.FontProperty; |
|
import com.alibaba.excel.metadata.property.LoopMergeProperty; |
|
import com.alibaba.excel.metadata.property.StyleProperty; |
|
|
|
import lombok.Data; |
|
|
|
/** |
|
* excel head |
|
* |
|
* @author Jiaju Zhuang |
|
**/ |
|
@Data |
|
public class Head { |
|
/** |
|
* Column index of head |
|
*/ |
|
private Integer columnIndex; |
|
/** |
|
* It only has values when passed in {@link Sheet#setClazz(Class)} and {@link Table#setClazz(Class)} |
|
*/ |
|
private Field field; |
|
/** |
|
* It only has values when passed in {@link Sheet#setClazz(Class)} and {@link Table#setClazz(Class)} |
|
*/ |
|
private String fieldName; |
|
/** |
|
* Head name |
|
*/ |
|
private List<String> headNameList; |
|
/** |
|
* Whether index is specified |
|
*/ |
|
private Boolean forceIndex; |
|
/** |
|
* Whether to specify a name |
|
*/ |
|
private Boolean forceName; |
|
|
|
/** |
|
* column with |
|
*/ |
|
private ColumnWidthProperty columnWidthProperty; |
|
|
|
/** |
|
* Loop merge |
|
*/ |
|
private LoopMergeProperty loopMergeProperty; |
|
/** |
|
* Head style |
|
*/ |
|
private StyleProperty headStyleProperty; |
|
/** |
|
* Head font |
|
*/ |
|
private FontProperty headFontProperty; |
|
|
|
public Head(Integer columnIndex, Field field, String fieldName, List<String> headNameList, Boolean forceIndex, |
|
Boolean forceName) { |
|
this.columnIndex = columnIndex; |
|
this.field = field; |
|
this.fieldName = fieldName; |
|
if (headNameList == null) { |
|
this.headNameList = new ArrayList<>(); |
|
} else { |
|
this.headNameList = headNameList; |
|
for (String headName : headNameList) { |
|
if (headName == null) { |
|
throw new ExcelGenerateException("head name can not be null."); |
|
} |
|
} |
|
} |
|
this.forceIndex = forceIndex; |
|
this.forceName = forceName; |
|
} |
|
}
|
|
|