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.
44 lines
1.1 KiB
44 lines
1.1 KiB
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.property.ExcelContentProperty; |
|
|
|
/** |
|
* 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, ExcelContentProperty contentProperty) { |
|
if (ONE.equals(cellData.getDoubleValue())) { |
|
return Boolean.TRUE; |
|
} |
|
return Boolean.FALSE; |
|
} |
|
|
|
@Override |
|
public CellData convertToExcelData(Boolean value, ExcelContentProperty contentProperty) { |
|
if (value) { |
|
return new CellData(ONE); |
|
} |
|
return new CellData(ZERO); |
|
} |
|
|
|
}
|
|
|