br.com.objectos.comuns.io.csv.StringCsvConverter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of way-io Show documentation
Show all versions of way-io Show documentation
CSV, XLS and fixed parsers
The newest version!
/*
* StringConverter.java criado em 09/09/2012
*
* Propriedade de Objectos Fábrica de Software LTDA.
* Reprodução parcial ou total proibida.
*/
package br.com.objectos.comuns.io.csv;
/**
* @author [email protected] (Marcio Endo)
*/
public class StringCsvConverter extends AbstractCsvConverter {
@Override
protected String convert(String text) {
return text;
}
}