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.
30 lines
666 B
30 lines
666 B
package com.alibaba.excel.converters; |
|
|
|
import com.alibaba.excel.context.AnalysisContext; |
|
import com.alibaba.excel.metadata.data.ReadCellData; |
|
import com.alibaba.excel.metadata.property.ExcelContentProperty; |
|
|
|
import lombok.AllArgsConstructor; |
|
import lombok.Data; |
|
|
|
/** |
|
* read converter context |
|
* |
|
* @author Jiaju Zhuang |
|
*/ |
|
@Data |
|
@AllArgsConstructor |
|
public class ReadConverterContext<T> { |
|
/** |
|
* Excel cell data.NotNull. |
|
*/ |
|
private ReadCellData<T> readCellData; |
|
/** |
|
* Content property.Nullable. |
|
*/ |
|
private ExcelContentProperty contentProperty; |
|
/** |
|
* context.NotNull. |
|
*/ |
|
private AnalysisContext analysisContext; |
|
}
|
|
|