Package com.bayesserver.data
Class TemporalReadInfo
- java.lang.Object
-
- com.bayesserver.data.TemporalReadInfo
-
public final class TemporalReadInfo extends Object
Provides information about a temporal record.- See Also:
DefaultDataReader
-
-
Constructor Summary
Constructors Constructor Description TemporalReadInfo(Integer timeIndex, Object timeValue, DataRecord record)Initializes a new instance of the TemporalReadInfo class.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DataRecordgetRecord()The current temporal record.IntegergetTimeIndex()Gets the zero based time index (e.g.ObjectgetTimeValue()Gets the current value in the time column.
-
-
-
Constructor Detail
-
TemporalReadInfo
public TemporalReadInfo(Integer timeIndex, Object timeValue, DataRecord record)
Initializes a new instance of the TemporalReadInfo class. *- Parameters:
timeIndex- The zero based time index (e.g. t=0, t=100). Can be null.timeValue- The current value in the time column. Can be null.record- The current temporal record.
-
-
Method Detail
-
getRecord
public DataRecord getRecord()
The current temporal record.
-
getTimeIndex
public Integer getTimeIndex()
Gets the zero based time index (e.g. t=0, t=100). Can be null.
-
getTimeValue
public Object getTimeValue()
Gets the current value in the time column. Can be null.
-
-