Package pulse.io.readers
Interface PulseDataReader
-
- All Superinterfaces:
AbstractHandler
,AbstractReader<NumericPulseData>
,Reflexive
- All Known Implementing Classes:
NetzschPulseCSVReader
public interface PulseDataReader extends AbstractReader<NumericPulseData>
A reader for importing numeric pulse data -- if available.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description NumericPulseData
read(File file)
Converts the ASCII file to aNumericPulseData
object.-
Methods inherited from interface pulse.io.readers.AbstractHandler
getSupportedExtension, isExtensionSupported
-
-
-
-
Method Detail
-
read
NumericPulseData read(File file) throws IOException
Converts the ASCII file to aNumericPulseData
object.- Specified by:
read
in interfaceAbstractReader<NumericPulseData>
- Parameters:
file
- a file which has readable content- Returns:
- a
T
object created by reading all information fromf
. - Throws:
IOException
-
-