net.sf.doolin.tabular.csv.CSVAdapter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of doolin-tabular Show documentation
Show all versions of doolin-tabular Show documentation
This Doolin GUI module is an extension that allows writing
tabular data (CSV, Excel).
The newest version!
package net.sf.doolin.tabular.csv;
/**
* This interface allows the adaptation of a model value to a CSV string.
*
* @author Damien Coraboeuf
*/
public interface CSVAdapter {
/**
* Adapts a model value to a CSV string
*
* @param value
* Value to adapt
* @return Adapted value
*/
String getCSVValue(Object value);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy