Package org.openrefine.exporters
Interface TabularSerializer
-
public interface TabularSerializer
An interface to be implemented by exporters which useCustomizableTabularExporterUtilities.exportRows(org.openrefine.model.Grid, org.openrefine.browsing.Engine, java.util.Properties, org.openrefine.exporters.TabularSerializer, org.openrefine.sorting.SortingConfig)
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
TabularSerializer.CellData
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
addRow(List<TabularSerializer.CellData> cells, boolean isHeader)
void
endFile()
void
startFile(com.fasterxml.jackson.databind.JsonNode options)
-
-
-
Method Detail
-
startFile
void startFile(com.fasterxml.jackson.databind.JsonNode options)
-
endFile
void endFile()
-
addRow
void addRow(List<TabularSerializer.CellData> cells, boolean isHeader)
-
-