Interface ReadingDataReader
-
- All Known Implementing Classes:
YaspCorrectorKickDataReader,YaspFileReader
public interface ReadingDataReaderthe general interface for a class that readsReadingData
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ReadingDataread(java.io.File file)reads the data and returns a new instance of anReadingDataobject.ReadingDataread(java.io.File file, ReadSelectionFilter selection)reads the data and returns a new instance of anReadingDataobject.
-
-
-
Method Detail
-
read
ReadingData read(java.io.File file, ReadSelectionFilter selection) throws ReaderException
reads the data and returns a new instance of anReadingDataobject.- Parameters:
file- The file from which to read the dataselection- a filter which allows to only load values for certain elements- Returns:
- the
ReadingData - Throws:
ReaderException- if an error occures during reading
-
read
ReadingData read(java.io.File file) throws ReaderException
reads the data and returns a new instance of anReadingDataobject. Values for all correctors and monitors are loaded.- Parameters:
file- the file from which to load the data- Returns:
- the newly loaded data
- Throws:
ReaderException
-
-