java.lang.Object
com.github.developframework.excel.AbstractColumnDefinition<ENTITY,Void>
com.github.developframework.excel.column.LiteralColumnDefinition<ENTITY>
- 所有已实现的接口:
ColumnDefinition<ENTITY>
- 作者:
- qiushui on 2023-01-31.
-
字段概要
从类继承的字段 com.github.developframework.excel.AbstractColumnDefinition
cellCommentInfo, cellStyleKeyProvider, columnInfo, readConvertFunction, writeConvertFunction -
构造器概要
构造器 -
方法概要
修饰符和类型方法说明voidreadOutCell(org.apache.poi.ss.usermodel.Workbook workbook, org.apache.poi.ss.usermodel.Cell cell, ENTITY entity) 读取单元格值writeIntoCell(org.apache.poi.ss.usermodel.Workbook workbook, org.apache.poi.ss.usermodel.Sheet sheet, org.apache.poi.ss.usermodel.Cell cell, ENTITY entity, int index) 值写入单元格从类继承的方法 com.github.developframework.excel.AbstractColumnDefinition
cellStyleKey, columnWidth, comment, configureCellStyle, determineCellStyleKey, getCellValue, getEntityValue, readConvert, setCellValue, setEntityValue, writeConvert从类继承的方法 java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait从接口继承的方法 com.github.developframework.excel.ColumnDefinition
getColumnInfo
-
构造器详细资料
-
LiteralColumnDefinition
-
-
方法详细资料
-
writeIntoCell
public Object writeIntoCell(org.apache.poi.ss.usermodel.Workbook workbook, org.apache.poi.ss.usermodel.Sheet sheet, org.apache.poi.ss.usermodel.Cell cell, ENTITY entity, int index) 从类复制的说明:AbstractColumnDefinition值写入单元格- 指定者:
writeIntoCell在接口中ColumnDefinition<ENTITY>- 覆盖:
writeIntoCell在类中AbstractColumnDefinition<ENTITY,Void> - 参数:
workbook- 工作区cell- 单元格entity- 实体index- 实体索引- 返回:
- 字段值
-
readOutCell
public void readOutCell(org.apache.poi.ss.usermodel.Workbook workbook, org.apache.poi.ss.usermodel.Cell cell, ENTITY entity) 从类复制的说明:AbstractColumnDefinition读取单元格值- 指定者:
readOutCell在接口中ColumnDefinition<ENTITY>- 覆盖:
readOutCell在类中AbstractColumnDefinition<ENTITY,Void> - 参数:
workbook- 工作区cell- 单元格entity- 实体
-