Uses of Interface
pulse.io.readers.AbstractReader
-
Packages that use AbstractReader Package Description pulse.io.readers The main class of this package isReaderManager
.pulse.util Contains abstract data and hierarchical structures that implement much of the Java Reflection API. -
-
Uses of AbstractReader in pulse.io.readers
Subinterfaces of AbstractReader in pulse.io.readers Modifier and Type Interface Description interface
CurveReader
Basic interface for readingExperimentalData
(which extendsHeatingCurve
-- hence the name).interface
DatasetReader
AnAbstractReader
for reading tabular datasets and enhancing them with an interpolation algorithm.interface
PulseDataReader
A reader for importing numeric pulse data -- if available.Classes in pulse.io.readers that implement AbstractReader Modifier and Type Class Description class
ButcherTableauReader
Provides a reader class for Butcher tableaux.class
DATReader
A specific implementation ofCurveReader
used to read.dat
files.class
LFRReader
ACurveReader
capable of reading ASCII master-files generated by the Linseis software.class
NetzschCSVReader
Reads the .CSV files exported from Proteus LFA Analysis software.class
NetzschPulseCSVReader
Reads numeric pulse data generated by the Proteus LFA Analysis export tool.class
QuadratureReader
A reader, which convertsquad
files into instancesOrdinateSet
.class
TBLReader
ADatasetReader
capable of reading.tbl
files.Methods in pulse.io.readers with parameters of type AbstractReader Modifier and Type Method Description static <T> Set<T>
ReaderManager. load(AbstractReader<T> reader, String location, String listName)
This method is specifically introduced to handle multiple files in a resources folder enclosed within thejar
archive.Method parameters in pulse.io.readers with type arguments of type AbstractReader Modifier and Type Method Description static <T> T
ReaderManager. read(List<? extends AbstractReader<T>> readers, File file)
Attempts to find aDatasetReader
for processingfile
.static <T> Set<T>
ReaderManager. readDirectory(List<AbstractReader<T>> readers, File directory)
Obtains a set of files indirectory
and attemps to convert each file toT
usingreaders
. -
Uses of AbstractReader in pulse.util
Constructors in pulse.util with parameters of type AbstractReader Constructor Description DiscreteSelector(AbstractReader<T> reader, String directory, String listLocation)
-