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 Expression
Parser. readAggregate(AggregateType aggregateType, java.lang.String aggregateName)
private Aggregate
Parser. 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 AggregateType
Aggregate. aggregateType
private AggregateType
AggregateDataCorr. aggregateType
private AggregateType
AggregateDataCovar. aggregateType
private AggregateType
AggregateDataDefault. aggregateType
private AggregateType
AggregateDataStdVar. aggregateType
Fields 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. AGGREGATES
Methods in org.h2.expression.aggregate that return AggregateType Modifier and Type Method Description AggregateType
Aggregate. getAggregateType()
Returns the type of this aggregate.static AggregateType
Aggregate. getAggregateType(java.lang.String name)
Get the aggregate type for this name, or -1 if no aggregate has been found.static AggregateType
AggregateType. 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 void
Aggregate. 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)
-