Package org.processmining.log.csv
Class CSVOpenCSVImpl
- java.lang.Object
-
- org.processmining.log.csv.CSVOpenCSVImpl
-
-
Constructor Summary
Constructors Constructor Description CSVOpenCSVImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ICSVReadercreateReader(java.io.InputStream is, CSVConfig importConfig)Returns a newICSVReaderthat can be used to read data from theInputStreamin CSV format.ICSVWritercreateWriter(java.io.OutputStream os, CSVConfig importConfig)Returns a newICSVWriterthat can be used to write data to a newOutputStreamin CSV format.
-
-
-
Method Detail
-
createReader
public ICSVReader createReader(java.io.InputStream is, CSVConfig importConfig) throws java.io.IOException
Description copied from interface:ICSVReturns a newICSVReaderthat can be used to read data from theInputStreamin CSV format. The caller is responsible for callingICSVReader.close()on the writer.- Specified by:
createReaderin interfaceICSV- Returns:
- Throws:
java.io.IOException
-
createWriter
public ICSVWriter createWriter(java.io.OutputStream os, CSVConfig importConfig) throws java.io.IOException
Description copied from interface:ICSVReturns a newICSVWriterthat can be used to write data to a newOutputStreamin CSV format. The caller is responsible for callingICSVWriter.close()on the writer.- Specified by:
createWriterin interfaceICSV- Returns:
- Throws:
java.io.IOException
-
-