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

com.fredericboisguerin.excel.converter.StringConverter Maven / Gradle / Ivy

The newest version!
package com.fredericboisguerin.excel.converter;

/**
 * Created by fboisguerin on 22/07/2015.
 */
class StringConverter implements Converter {

    private static final StringConverter INSTANCE = new StringConverter();

    public static StringConverter getInstance() {
        return INSTANCE;
    }

    private StringConverter() {
    }

    public String convert(String s) throws ConverterException {
        return s;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy