Uses of Interface
com.bayesserver.data.DataReader
-
Packages that use DataReader Package Description com.bayesserver.data com.bayesserver.data.distributed com.bayesserver.data.timeseries -
-
Uses of DataReader in com.bayesserver.data
Classes in com.bayesserver.data that implement DataReader Modifier and Type Class Description class
DataReaderFiltered
Wraps an existing data reader while filtering records.class
DataTableReader
Allows a DataTable to be read as a DataReader.Methods in com.bayesserver.data that return DataReader Modifier and Type Method Description DataReader
DatabaseDataReaderCommand. executeReader()
Returns an instance ofIDataReader
.DataReader
DataReaderCommand. executeReader()
Returns an instance ofIDataReader
.DataReader
DataReaderCommandFiltered. executeReader()
Returns an instance ofIDataReader
.DataReader
DataTableDataReaderCommand. executeReader()
Creates a new DataReader backed by the DataTable.DataReader
NestedDataReader. getDataReader()
Gets the nested data reader.Constructors in com.bayesserver.data with parameters of type DataReader Constructor Description DataReaderFiltered(DataReader inner, DataReaderFilter filter)
Initializes a new instance of theDataReaderFiltered
class.DefaultDataReader(DataReader reader, ReaderOptions readerOptions)
Initializes a new instance of theDefaultDataReader
class.DefaultDataReader(DataReader reader, ReaderOptions readerOptions, DataReader temporalReader, TemporalReaderOptions temporalReaderOptions)
Initializes a new instance of theDefaultDataReader
class.DefaultDataReader(DataReader reader, ReaderOptions readerOptions, DataReader temporalReader, TemporalReaderOptions temporalReaderOptions, List<NestedDataReader> nestedReaders)
Initializes a new instance of theDefaultDataReader
class.DefaultDataReader(DataReader reader, ReaderOptions readerOptions, List<NestedDataReader> nestedReaders)
Initializes a new instance of theDefaultDataReader
class.DefaultDataReader(DataReader temporalReader, TemporalReaderOptions temporalReaderOptions)
Initializes a new instance of theDefaultDataReader
class.DefaultEvidenceReader(DataReader reader, List<VariableReference> variables, ReaderOptions readerOptions)
Initializes a new instance of theDefaultEvidenceReader
class.DefaultEvidenceReader(DataReader reader, List<VariableReference> variables, ReaderOptions readerOptions, DataReader readerTemporal, List<VariableReference> variablesTemporal, TemporalReaderOptions temporalReaderOptions)
Initializes a new instance of theDefaultEvidenceReader
class, supporting both temporal and non temporal data.DefaultEvidenceReader(DataReader readerTemporal, List<VariableReference> variablesTemporal, TemporalReaderOptions temporalReaderOptions)
Initializes a new instance of theDefaultEvidenceReader
class.NestedDataReader(DataReader dataReader, String caseIdColumn)
Initializes a new instance of theNestedDataReader
class. -
Uses of DataReader in com.bayesserver.data.distributed
Methods in com.bayesserver.data.distributed that return DataReader Modifier and Type Method Description DataReader
DataPartition. createDataReader(T context)
Create a data reader for this distributed partition. -
Uses of DataReader in com.bayesserver.data.timeseries
Classes in com.bayesserver.data.timeseries that implement DataReader Modifier and Type Class Description class
WindowDataReader
A data reader that reads windows of data over another data reader.Methods in com.bayesserver.data.timeseries that return DataReader Modifier and Type Method Description DataReader
WindowDataReaderCommand. executeReader()
Returns an instance ofIDataReader
.Constructors in com.bayesserver.data.timeseries with parameters of type DataReader Constructor Description WindowDataReader(DataReader source, WindowOptions windowOptions, WindowDataReaderOptions readerOptions)
Initializes a new instance of theWindowDataReader
class.
-