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.
19 lines
429 B
19 lines
429 B
6 years ago
|
package com.alibaba.excel.converters;
|
||
|
|
||
|
import com.alibaba.excel.enums.CellDataTypeEnum;
|
||
|
|
||
|
/**
|
||
|
* Converter unique key
|
||
|
*
|
||
|
* @author zhuangjiaju
|
||
|
*/
|
||
|
public class ConverterKeyBuild {
|
||
|
public static String buildKey(Class clazz) {
|
||
|
return clazz.getName();
|
||
|
}
|
||
|
|
||
|
public static String buildKey(Class clazz, CellDataTypeEnum cellDataTypeEnum) {
|
||
|
return clazz.getName() + "-" + cellDataTypeEnum.toString();
|
||
|
}
|
||
|
}
|