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

com.github.rrsunhome.excelsql.config.converter.ObjectToStringCellConverter Maven / Gradle / Ivy

There is a newer version: 2.1.2
Show newest version
package com.github.rrsunhome.excelsql.config.converter;

/**
 * @author : wangqijia
 * create at:  2021/10/26  下午10:12
 */
public class ObjectToStringCellConverter implements CellConverter {

    public static final CellConverter INSTANCE = new ObjectToStringCellConverter();

    @Override
    public String convert(Object source) {
        if (source == null) {
            return "";
        }
        return source.toString();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy