Package com.bayesserver.data
Class TemporalReaderOptions
- java.lang.Object
-
- com.bayesserver.data.TemporalReaderOptions
-
public final class TemporalReaderOptions extends Object
Options that apply to the reading of temporal data.- See Also:
DefaultDataReader
,DefaultEvidenceReader
-
-
Constructor Summary
Constructors Constructor Description TemporalReaderOptions(String caseIdColumn, String timeColumn, TimeValueType timeValueType)
Initializes a new instance of theTemporalReaderOptions
class.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getCaseIdColumn()
The name of the temporal case identifier column, if one is present.String
getTimeColumn()
The name of the time column in the temporal data, if temporal data is present.TimeValueType
getTimeValueType()
The type of values contained in the time column.
-
-
-
Constructor Detail
-
TemporalReaderOptions
public TemporalReaderOptions(String caseIdColumn, String timeColumn, TimeValueType timeValueType)
Initializes a new instance of theTemporalReaderOptions
class.- Parameters:
caseIdColumn
- The name of the temporal case identifier column, if one is present.timeColumn
- The name of the time column in the temporal data, if temporal data is present.timeValueType
- The type of values contained in the time column.
-
-
Method Detail
-
getCaseIdColumn
public String getCaseIdColumn()
The name of the temporal case identifier column, if one is present.
-
getTimeColumn
public String getTimeColumn()
The name of the time column in the temporal data, if temporal data is present.
-
getTimeValueType
public TimeValueType getTimeValueType()
The type of values contained in the time column.
-
-