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

net.sf.doolin.tabular.csv.CSVAdapter Maven / Gradle / Ivy

Go to download

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