Package org.ujmp.core.export.format
Interface MatrixDenseCSVExportFormat
-
- All Superinterfaces:
MatrixExportFormat
- All Known Subinterfaces:
MatrixClipboardExportDestination
,MatrixFileExportDestination
,MatrixStreamExportDestination
,MatrixWriterExportDestination
- All Known Implementing Classes:
AbstracMatrixClipboardDestination
,AbstractMatrixFileExportDestination
,AbstractMatrixStreamExportDestination
,AbstractMatrixWriterExportDestination
,DefaultMatrixClipboardExportDestination
,DefaultMatrixFileExportDestination
,DefaultMatrixStreamExportDestination
,DefaultMatrixWriterCSVExporter
,DefaultMatrixWriterExportDestination
public interface MatrixDenseCSVExportFormat extends MatrixExportFormat
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
asDenseCSV()
void
asDenseCSV(char columnSeparator)
void
asDenseCSV(char columnSeparator, char enclosingCharacter)
-
-
-
Method Detail
-
asDenseCSV
void asDenseCSV(char columnSeparator, char enclosingCharacter) throws java.io.IOException
- Throws:
java.io.IOException
-
asDenseCSV
void asDenseCSV(char columnSeparator) throws java.io.IOException
- Throws:
java.io.IOException
-
asDenseCSV
void asDenseCSV() throws java.io.IOException
- Throws:
java.io.IOException
-
-