Package com.bayesserver.data.timeseries
Class WindowDataReaderOptions
- java.lang.Object
-
- com.bayesserver.data.timeseries.WindowDataReaderOptions
-
public final class WindowDataReaderOptions extends Object
Options for creating windowed data readers.
-
-
Constructor Summary
Constructors Constructor Description WindowDataReaderOptions()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getWindowColumnName()
Gets the name of the column which will contain the window identifier.String
getWindowTimeColumnName()
Gets the name of the column which will contain the window time.void
setWindowColumnName(String value)
Sets the name of the column which will contain the window identifier.void
setWindowTimeColumnName(String value)
Sets the name of the column which will contain the window time.
-
-
-
Method Detail
-
getWindowColumnName
public String getWindowColumnName()
Gets the name of the column which will contain the window identifier.
-
setWindowColumnName
public void setWindowColumnName(String value)
Sets the name of the column which will contain the window identifier.
-
getWindowTimeColumnName
public String getWindowTimeColumnName()
Gets the name of the column which will contain the window time. (e.g. -2 = 2 steps back, 0 is current, 3 is 3 steps into the futrue)
-
setWindowTimeColumnName
public void setWindowTimeColumnName(String value)
Sets the name of the column which will contain the window time. (e.g. -2 = 2 steps back, 0 is current, 3 is 3 steps into the futrue)
-
-