Package org.processmining.log.csv
Class AbstractCSVFile
- java.lang.Object
-
- org.processmining.log.csv.AbstractCSVFile
-
- All Implemented Interfaces:
CSVFile
- Direct Known Subclasses:
CSVFileReferenceOpenCSVImpl,CSVFileReferenceUnivocityImpl
public abstract class AbstractCSVFile extends java.lang.Object implements CSVFile
-
-
Constructor Summary
Constructors Constructor Description AbstractCSVFile(java.nio.file.Path file)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.nio.file.PathgetFile()java.lang.StringgetFilename()java.io.InputStreamgetInputStream()-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.processmining.log.csv.CSVFile
createReader, getCSV, readHeader
-
-
-
-
Method Detail
-
getFile
public java.nio.file.Path getFile()
-
getFilename
public java.lang.String getFilename()
- Specified by:
getFilenamein interfaceCSVFile- Returns:
- the filename with extension
-
getInputStream
public java.io.InputStream getInputStream() throws java.io.IOException- Specified by:
getInputStreamin interfaceCSVFile- Returns:
- input stream of this CSV file
- Throws:
java.io.FileNotFoundExceptionjava.io.IOException
-
-