package com.taover.easyexcel.converters; import com.taover.easyexcel.enums.CellDataTypeEnum; import com.taover.easyexcel.metadata.CellData; import com.taover.easyexcel.metadata.GlobalConfiguration; import com.taover.easyexcel.metadata.property.ExcelContentProperty; /** * An empty converter.It's automatically converted by type. * * @author Jiaju Zhuang */ public class AutoConverter implements Converter { @Override public Class supportJavaTypeKey() { return null; } @Override public CellDataTypeEnum supportExcelTypeKey() { return null; } @Override public Object convertToJavaData(CellData cellData, ExcelContentProperty contentProperty, GlobalConfiguration globalConfiguration) { return null; } @Override public CellData convertToExcelData(Object value, ExcelContentProperty contentProperty, GlobalConfiguration globalConfiguration) { return null; } }