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 ExpressionParser.readAggregate(AggregateType aggregateType, String aggregateName) private AggregateParser.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 AggregateTypeAggregate.aggregateTypeprivate final AggregateTypeAggregateDataCorr.aggregateTypeprivate final AggregateTypeAggregateDataCovar.aggregateTypeprivate final AggregateTypeAggregateDataDefault.aggregateTypeprivate final AggregateTypeAggregateDataStdVar.aggregateTypeFields in org.h2.expression.aggregate with type parameters of type AggregateTypeModifier and TypeFieldDescriptionprivate static final HashMap<String, AggregateType> Aggregate.AGGREGATESMethods in org.h2.expression.aggregate that return AggregateTypeModifier and TypeMethodDescriptionAggregate.getAggregateType()Returns the type of this aggregate.static AggregateTypeAggregate.getAggregateType(String name) Get the aggregate type for this name, or -1 if no aggregate has been found.static AggregateTypeReturns 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 voidAggregate.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)