com.fredericboisguerin.excel.converter.StringConverter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of excel-reader-writer Show documentation
Show all versions of excel-reader-writer Show documentation
A library to read/write excel files with simple descriptions of the model
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;
}
}