Class MinMaxAggWindow
java.lang.Object
com.inductiveautomation.ignition.gateway.sqltags.history.query.processing.aggregates.legacy.AbstractDataWindow
com.inductiveautomation.ignition.gateway.sqltags.history.query.processing.aggregates.legacy.MinMaxAggWindow
- All Implemented Interfaces:
DataWindow
- Direct Known Subclasses:
MinMaxAggWindow.MinOrMaxAggregationWindow
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic class
static class
protected static class
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
addValue
(HistoricalValue value) Adds a value to the window.void
finalize
(HistoricalValue trailingValue) Provides the window with the value that comes next, outside of the window, in order to finalize calculations.Returns the edge value of the window, which will be used for interpolation from the previous value.Returns the "exit" value of this window.getValue
(int level) Returns the value for the specified "level" of the window.boolean
hasMore
(int level) void
initialize
(HistoricalValue entryValue) Provides the window with the previous window's value.protected boolean
isEntry
(HistoricalValue val) protected boolean
isLatest
(HistoricalValue val) protected boolean
isMax
(HistoricalValue val) protected boolean
isMin
(HistoricalValue val) protected boolean
Methods inherited from class com.inductiveautomation.ignition.gateway.sqltags.history.query.processing.aggregates.legacy.AbstractDataWindow
getEndTime, getStartTime
-
Constructor Details
-
MinMaxAggWindow
public MinMaxAggWindow(long start, long end)
-
-
Method Details
-
hasMore
public boolean hasMore(int level) -
isMinFirst
protected boolean isMinFirst() -
getValue
Description copied from interface:DataWindow
Returns the value for the specified "level" of the window. Windows generally only have one value, but technically they are allowed to have any number. As long as hasMore is true, this function will be called with an incremented level. -
getEntryValue
Description copied from interface:DataWindow
Returns the edge value of the window, which will be used for interpolation from the previous value. This value is not necessarily returned from the getValue() function as part of the window itself. -
getExitValue
Description copied from interface:DataWindow
Returns the "exit" value of this window. Generally this will be the same as getValue(x) with x=the highest level provided by the window, but sometimes it could be the last received raw value. Interpolation will occur between this value and the entry value of the next window. -
initialize
Description copied from interface:DataWindow
Provides the window with the previous window's value. May not be used by all window types. -
finalize
Description copied from interface:DataWindow
Provides the window with the value that comes next, outside of the window, in order to finalize calculations. May not be used by all window types. -
addValue
Description copied from interface:DataWindow
Adds a value to the window. -
isMin
-
isMax
-
isEntry
-
isLatest
-