Uses of Enum
org.h2.expression.aggregate.AggregateType
Packages that use AggregateType
Package
Description
This package contains the parser and the base classes for prepared SQL statements.
Aggregate functions.
-
Uses of AggregateType in org.h2.command
Methods in org.h2.command with parameters of type AggregateTypeModifier and TypeMethodDescriptionprivate Expression
Parser.readAggregate
(AggregateType aggregateType, String aggregateName) private Aggregate
Parser.readWithinGroup
(AggregateType aggregateType, Expression[] args, boolean distinct, Object extraArguments, boolean forHypotheticalSet, boolean simple) -
Uses of AggregateType in org.h2.expression.aggregate
Fields in org.h2.expression.aggregate declared as AggregateTypeModifier and TypeFieldDescriptionprivate final AggregateType
Aggregate.aggregateType
private final AggregateType
AggregateDataCorr.aggregateType
private final AggregateType
AggregateDataCovar.aggregateType
private final AggregateType
AggregateDataDefault.aggregateType
private final AggregateType
AggregateDataStdVar.aggregateType
Fields in org.h2.expression.aggregate with type parameters of type AggregateTypeModifier and TypeFieldDescriptionprivate static final HashMap
<String, AggregateType> Aggregate.AGGREGATES
Methods in org.h2.expression.aggregate that return AggregateTypeModifier and TypeMethodDescriptionAggregate.getAggregateType()
Returns the type of this aggregate.static AggregateType
Aggregate.getAggregateType
(String name) Get the aggregate type for this name, or -1 if no aggregate has been found.static AggregateType
Returns the enum constant of this type with the specified name.static AggregateType[]
AggregateType.values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.h2.expression.aggregate with parameters of type AggregateTypeModifier and TypeMethodDescriptionprivate static void
Aggregate.addAggregate
(String name, AggregateType type) Constructors in org.h2.expression.aggregate with parameters of type AggregateTypeModifierConstructorDescriptionAggregate
(AggregateType aggregateType, Expression[] args, Select select, boolean distinct) Create a new aggregate object.(package private)
AggregateDataCorr
(AggregateType aggregateType) (package private)
AggregateDataCovar
(AggregateType aggregateType) (package private)
AggregateDataDefault
(AggregateType aggregateType, TypeInfo dataType) (package private)
AggregateDataStdVar
(AggregateType aggregateType)