mirror of https://github.com/alibaba/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.
45 lines
1.1 KiB
45 lines
1.1 KiB
6 years ago
|
package com.alibaba.excel.converters.booleanconverter;
|
||
|
|
||
|
import com.alibaba.excel.converters.Converter;
|
||
|
import com.alibaba.excel.enums.CellDataTypeEnum;
|
||
|
import com.alibaba.excel.metadata.CellData;
|
||
|
import com.alibaba.excel.metadata.ExcelColumnProperty;
|
||
|
|
||
|
/**
|
||
|
* Boolean and number converter
|
||
|
*
|
||
|
* @author zhuangjiaju
|
||
|
*/
|
||
|
public class BooleanNumberConverter implements Converter<Boolean> {
|
||
|
|
||
|
private static final Double ONE = 1.0;
|
||
|
private static final Double ZERO = 0.0;
|
||
|
|
||
|
@Override
|
||
|
public Class supportJavaTypeKey() {
|
||
|
return Boolean.class;
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public CellDataTypeEnum supportExcelTypeKey() {
|
||
|
return CellDataTypeEnum.NUMBER;
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public Boolean convertToJavaData(CellData cellData, ExcelColumnProperty columnProperty) {
|
||
|
if (ONE.equals(cellData.getDoubleValue())) {
|
||
|
return Boolean.TRUE;
|
||
|
}
|
||
|
return Boolean.FALSE;
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public CellData convertToExcelData(Boolean value, ExcelColumnProperty columnProperty) {
|
||
|
if (value) {
|
||
|
return new CellData(ONE);
|
||
|
}
|
||
|
return new CellData(ZERO);
|
||
|
}
|
||
|
|
||
|
}
|