Package org.aoju.bus.office.excel.cell
Interface CellSetter
- All Known Implementing Classes:
BooleanCellSetter,CalendarCellSetter,CharSequenceCellSetter,DateCellSetter,EscapeStringCellSetter,FormulaCellValue,HyperlinkCellSetter,NullCellSetter,NumberCellSetter,RichTextCellSetter,TemporalAccessorCellSetter
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
单元格值自定义设置器,主要用于Excel数据导出,用户通过自定义此接口,实现可定制化的单元格值设定
- Since:
- Java 17+
- Author:
- Kimi Liu
-
Method Summary
Modifier and TypeMethodDescriptionvoidsetValue(org.apache.poi.ss.usermodel.Cell cell) 自定义单元格值设置,同时可以设置单元格样式、格式等信息
-
Method Details
-
setValue
void setValue(org.apache.poi.ss.usermodel.Cell cell) 自定义单元格值设置,同时可以设置单元格样式、格式等信息- Parameters:
cell- 单元格
-