Java Code Examples for com.alibaba.excel.enums.CellDataTypeEnum#BOOLEAN

The following examples show how to use com.alibaba.excel.enums.CellDataTypeEnum#BOOLEAN . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: CellData.java    From easyexcel with Apache License 2.0 5 votes vote down vote up
public CellData(Boolean booleanValue) {
    if (booleanValue == null) {
        throw new IllegalArgumentException("BooleanValue can not be null");
    }
    this.type = CellDataTypeEnum.BOOLEAN;
    this.booleanValue = booleanValue;
    this.formula = Boolean.FALSE;
}
 
Example 2
Source File: LongBooleanConverter.java    From easyexcel with Apache License 2.0 4 votes vote down vote up
@Override
public CellDataTypeEnum supportExcelTypeKey() {
    return CellDataTypeEnum.BOOLEAN;
}
 
Example 3
Source File: IntegerBooleanConverter.java    From easyexcel with Apache License 2.0 4 votes vote down vote up
@Override
public CellDataTypeEnum supportExcelTypeKey() {
    return CellDataTypeEnum.BOOLEAN;
}
 
Example 4
Source File: StringBooleanConverter.java    From easyexcel with Apache License 2.0 4 votes vote down vote up
@Override
public CellDataTypeEnum supportExcelTypeKey() {
    return CellDataTypeEnum.BOOLEAN;
}
 
Example 5
Source File: ByteBooleanConverter.java    From easyexcel with Apache License 2.0 4 votes vote down vote up
@Override
public CellDataTypeEnum supportExcelTypeKey() {
    return CellDataTypeEnum.BOOLEAN;
}
 
Example 6
Source File: ShortBooleanConverter.java    From easyexcel with Apache License 2.0 4 votes vote down vote up
@Override
public CellDataTypeEnum supportExcelTypeKey() {
    return CellDataTypeEnum.BOOLEAN;
}
 
Example 7
Source File: BooleanBooleanConverter.java    From easyexcel with Apache License 2.0 4 votes vote down vote up
@Override
public CellDataTypeEnum supportExcelTypeKey() {
    return CellDataTypeEnum.BOOLEAN;
}
 
Example 8
Source File: FloatBooleanConverter.java    From easyexcel with Apache License 2.0 4 votes vote down vote up
@Override
public CellDataTypeEnum supportExcelTypeKey() {
    return CellDataTypeEnum.BOOLEAN;
}
 
Example 9
Source File: BigDecimalBooleanConverter.java    From easyexcel with Apache License 2.0 4 votes vote down vote up
@Override
public CellDataTypeEnum supportExcelTypeKey() {
    return CellDataTypeEnum.BOOLEAN;
}
 
Example 10
Source File: DoubleBooleanConverter.java    From easyexcel with Apache License 2.0 4 votes vote down vote up
@Override
public CellDataTypeEnum supportExcelTypeKey() {
    return CellDataTypeEnum.BOOLEAN;
}