Package org.h2.expression.aggregate
Class AggregateDataBinarySet
- java.lang.Object
-
- org.h2.expression.aggregate.AggregateData
-
- org.h2.expression.aggregate.AggregateDataBinarySet
-
- Direct Known Subclasses:
AggregateDataCorr,AggregateDataCovar
abstract class AggregateDataBinarySet extends AggregateData
Aggregate data of binary set functions.
-
-
Constructor Summary
Constructors Constructor Description AggregateDataBinarySet()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description (package private) voidadd(SessionLocal session, Value v)Add a value to this aggregate.(package private) abstract voidadd(SessionLocal session, Value yValue, Value xValue)-
Methods inherited from class org.h2.expression.aggregate.AggregateData
getValue
-
-
-
-
Method Detail
-
add
abstract void add(SessionLocal session, Value yValue, Value xValue)
-
add
final void add(SessionLocal session, Value v)
Description copied from class:AggregateDataAdd a value to this aggregate.- Specified by:
addin classAggregateData- Parameters:
session- the sessionv- the value
-
-