Package io.deephaven.api.agg
Class Formula
java.lang.Object
io.deephaven.api.agg.Formula
- All Implemented Interfaces:
Aggregation
An
aggregation
that provides a single output column that is computed by applying a formula to a
set of input columns.-
Nested Class Summary
Nested classes/interfaces inherited from interface io.deephaven.api.agg.Aggregation
Aggregation.Visitor
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptioncolumn()
Return thisFormula
as a string of the form<newColumn>=<expression>
static Formula
of
(ColumnName name, String formula) static Formula
of
(Selectable selectable) static Formula
static Formula
abstract Selectable
final <V extends Aggregation.Visitor>
Vwalk
(V visitor) Glue method to deliver this Aggregation to aAggSpec.Visitor
.
-
Constructor Details
-
Formula
public Formula()
-
-
Method Details
-
parse
-
of
-
of
-
of
-
selectable
-
column
-
expression
-
formulaString
Return thisFormula
as a string of the form<newColumn>=<expression>
-
walk
Description copied from interface:Aggregation
Glue method to deliver this Aggregation to aAggSpec.Visitor
.- Specified by:
walk
in interfaceAggregation
- Parameters:
visitor
- The visitor- Returns:
- The visitor
-