All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.robe.convert.excel.parsers.ParseBool Maven / Gradle / Ivy

The newest version!
package io.robe.convert.excel.parsers;

import org.apache.poi.ss.usermodel.Cell;

import java.lang.reflect.Field;

public class ParseBool implements IsParser {
    @Override
    public Object parse(Object o, Field field) {
        Boolean b = null;

        if (o instanceof String) {
            b = Boolean.valueOf(o.toString());
        }

        return b;
    }

    @Override
    public void setCell(Object o, Cell cell, Field field) {
        Boolean bool = (Boolean) o;
        if (bool != null) {
            cell.setCellValue(bool);
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy