提交 | 用户 | 时间 | ||
fd2207 | 1 | package com.jcdm.common.utils.poi; |
懒 | 2 | |
3 | import org.apache.poi.ss.usermodel.Cell; | |
4 | import org.apache.poi.ss.usermodel.Workbook; | |
5 | ||
6 | /** | |
7 | * Excel数据格式处理适配器 | |
8 | * | |
9 | * @author jc | |
10 | */ | |
11 | public interface ExcelHandlerAdapter | |
12 | { | |
13 | /** | |
14 | * 格式化 | |
15 | * | |
16 | * @param value 单元格数据值 | |
17 | * @param args excel注解args参数组 | |
18 | * @param cell 单元格对象 | |
19 | * @param wb 工作簿对象 | |
20 | * | |
21 | * @return 处理后的值 | |
22 | */ | |
23 | Object format(Object value, String[] args, Cell cell, Workbook wb); | |
24 | } |