Class Export<E>

java.lang.Object
org.nuiton.csv.Export<E>
Direct Known Subclasses:
RepeatableExport

public class Export<E> extends Object
Object to realize a export from a ExportModel and some datas.

Usefull static methods

There is some usefull methods here to do operation in one line :

To export to a file

    Export.exportToFile(model, data, file);

To export to a writer

    Export.exportToWriter(model, data, writer);

To export as a string

    String exportcontent = Export.exportToString(model, data);

To obtain a new instance of an exporter

    Export<E> exporter = Export.newExport(model, data);
Since:
2.4
Author:
Brendan Le Ny - leny@codelutin.com, Tony Chemit - chemit@codelutin.com