Uses of Class
org.h2.expression.aggregate.AggregateType
-
Packages that use AggregateType Package Description org.h2.command This package contains the parser and the base classes for prepared SQL statements.org.h2.expression.aggregate Aggregate functions. -
-
Uses of AggregateType in org.h2.command
Methods in org.h2.command with parameters of type AggregateType Modifier and Type Method Description private ExpressionParser. readAggregate(AggregateType aggregateType, java.lang.String aggregateName)private AggregateParser. readWithinGroup(AggregateType aggregateType, Expression[] args, boolean distinct, java.lang.Object extraArguments, boolean forHypotheticalSet, boolean simple) -
Uses of AggregateType in org.h2.expression.aggregate
Fields in org.h2.expression.aggregate declared as AggregateType Modifier and Type Field Description private AggregateTypeAggregate. aggregateTypeprivate AggregateTypeAggregateDataCorr. aggregateTypeprivate AggregateTypeAggregateDataCovar. aggregateTypeprivate AggregateTypeAggregateDataDefault. aggregateTypeprivate AggregateTypeAggregateDataStdVar. aggregateTypeFields in org.h2.expression.aggregate with type parameters of type AggregateType Modifier and Type Field Description private static java.util.HashMap<java.lang.String,AggregateType>Aggregate. AGGREGATESMethods in org.h2.expression.aggregate that return AggregateType Modifier and Type Method Description AggregateTypeAggregate. getAggregateType()Returns the type of this aggregate.static AggregateTypeAggregate. getAggregateType(java.lang.String name)Get the aggregate type for this name, or -1 if no aggregate has been found.static AggregateTypeAggregateType. valueOf(java.lang.String name)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 AggregateType Modifier and Type Method Description private static voidAggregate. addAggregate(java.lang.String name, AggregateType type)Constructors in org.h2.expression.aggregate with parameters of type AggregateType Constructor Description Aggregate(AggregateType aggregateType, Expression[] args, Select select, boolean distinct)Create a new aggregate object.AggregateDataCorr(AggregateType aggregateType)AggregateDataCovar(AggregateType aggregateType)AggregateDataDefault(AggregateType aggregateType, TypeInfo dataType)AggregateDataStdVar(AggregateType aggregateType)
-