
com.github.dreamroute.excel.helper.util.HeaderInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of excel-helper Show documentation
Show all versions of excel-helper Show documentation
excel export base on apache poi 3.17
The newest version!
package com.github.dreamroute.excel.helper.util;
import java.lang.reflect.Field;
import org.apache.poi.ss.usermodel.CellType;
/**
*
* @author [email protected]
*
*/
public class HeaderInfo {
private CellType cellType;
private Field field;
public HeaderInfo(CellType cellType, Field field) {
this.cellType = cellType;
this.field = field;
}
public CellType getCellType() {
return cellType;
}
public void setCellType(CellType cellType) {
this.cellType = cellType;
}
public Field getField() {
return field;
}
public void setField(Field field) {
this.field = field;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy