Once #19 is done, we'd like to make use of Parso to provide a SAS7BDAT parser for Apache Tika (see TIKA-2462). In that parser, we'll want to get the "formatted" value as a string for each cell, then output that as SAX events for a HTML table
Currently, it seems that all the logic for turning column metadata + column number + raw value into a formatted string is hidden inside CSVDataWriterImpl, especially CSVDataWriterImpl.processEntry
It would be great if the logic for formatting as a string could be made available for re-use! Maybe by pulling it out to a helper class that CSVDataWriterImpl then uses?
Once #19 is done, we'd like to make use of Parso to provide a SAS7BDAT parser for Apache Tika (see TIKA-2462). In that parser, we'll want to get the "formatted" value as a string for each cell, then output that as SAX events for a HTML table
Currently, it seems that all the logic for turning column metadata + column number + raw value into a formatted string is hidden inside
CSVDataWriterImpl, especiallyCSVDataWriterImpl.processEntryIt would be great if the logic for formatting as a string could be made available for re-use! Maybe by pulling it out to a helper class that
CSVDataWriterImplthen uses?