Package io.deephaven.api.updateby.spec
Class EmaSpec
java.lang.Object
io.deephaven.api.updateby.spec.UpdateBySpecBase
io.deephaven.api.updateby.spec.EmaSpec
- All Implemented Interfaces:
UpdateBySpec
A
UpdateBySpec
for performing an Exponential Moving Average across the specified columns-
Nested Class Summary
Nested classes/interfaces inherited from interface io.deephaven.api.updateby.spec.UpdateBySpec
UpdateBySpec.Visitor<T>
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
applicableTo
(Class<?> inputType) Determine if this spec can be applied to the specified typeabstract Optional<OperationControl>
control()
final OperationControl
static EmaSpec
of
(OperationControl control, WindowScale windowScale) static EmaSpec
of
(WindowScale windowScale) static EmaSpec
ofTicks
(double tickWindow) static EmaSpec
ofTicks
(OperationControl control, double tickWindow) static EmaSpec
ofTime
(OperationControl control, String timestampCol, long timeScaleNanos) static EmaSpec
ofTime
(OperationControl control, String timestampCol, Duration emaDuration) static EmaSpec
static EmaSpec
final <T> T
walk
(UpdateBySpec.Visitor<T> visitor) abstract WindowScale
-
Constructor Details
-
EmaSpec
public EmaSpec()
-
-
Method Details
-
of
-
of
-
ofTime
-
ofTime
-
ofTime
-
ofTime
-
ofTicks
-
ofTicks
-
control
-
windowScale
-
controlOrDefault
-
applicableTo
Description copied from interface:UpdateBySpec
Determine if this spec can be applied to the specified type- Parameters:
inputType
- the specified input type- Returns:
- true if this spec can be applied to the specified input type
-
walk
-