mirror of https://github.com/alibaba/easyexcel
43 lines
1.1 KiB
43 lines
1.1 KiB
package com.alibaba.excel.converters.integer; |
|
|
|
import com.alibaba.excel.converters.Converter; |
|
import com.alibaba.excel.enums.CellDataTypeEnum; |
|
import com.alibaba.excel.metadata.CellData; |
|
import com.alibaba.excel.metadata.property.ExcelContentProperty; |
|
|
|
/** |
|
* Integer and boolean converter |
|
* |
|
* @author zhuangjiaju |
|
*/ |
|
public class IntegerBooleanConverter implements Converter<Integer> { |
|
private static final Integer ONE = 1; |
|
private static final Integer ZERO = 0; |
|
|
|
@Override |
|
public Class supportJavaTypeKey() { |
|
return Integer.class; |
|
} |
|
|
|
@Override |
|
public CellDataTypeEnum supportExcelTypeKey() { |
|
return CellDataTypeEnum.BOOLEAN; |
|
} |
|
|
|
@Override |
|
public Integer convertToJavaData(CellData cellData, ExcelContentProperty contentProperty) { |
|
if (cellData.getBooleanValue()) { |
|
return ONE; |
|
} |
|
return ZERO; |
|
} |
|
|
|
@Override |
|
public CellData convertToExcelData(Integer value, ExcelContentProperty contentProperty) { |
|
if (ONE.equals(value)) { |
|
return new CellData(Boolean.TRUE); |
|
} |
|
return new CellData(Boolean.FALSE); |
|
} |
|
|
|
}
|
|
|