Package io.deephaven.api.agg
Class ColumnAggregation
java.lang.Object
io.deephaven.api.agg.ColumnAggregation
- All Implemented Interfaces:
Aggregation
A ColumnAggregation is an
Aggregation
that is composed of a spec
and a single input/output
column pair
. The spec defines the aggregation operation to apply to the input column in order to
produce the paired output column.-
Nested Class Summary
Nested classes/interfaces inherited from interface io.deephaven.api.agg.Aggregation
Aggregation.Visitor
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionstatic ColumnAggregation
abstract Pair
pair()
abstract AggSpec
spec()
final <V extends Aggregation.Visitor>
Vwalk
(V visitor) Glue method to deliver this Aggregation to aAggSpec.Visitor
.
-
Constructor Details
-
ColumnAggregation
public ColumnAggregation()
-
-
Method Details
-
of
-
spec
-
pair
-
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
-