Uses of Class
org.teiid.query.sql.symbol.AggregateSymbol.Type
-
Packages that use AggregateSymbol.Type Package Description org.teiid.query.function.aggregate org.teiid.query.sql.symbol -
-
Uses of AggregateSymbol.Type in org.teiid.query.function.aggregate
Constructors in org.teiid.query.function.aggregate with parameters of type AggregateSymbol.Type Constructor Description RankingFunction(AggregateSymbol.Type function)
RankingFunctionBig(AggregateSymbol.Type function)
StatsFunction(AggregateSymbol.Type function)
-
Uses of AggregateSymbol.Type in org.teiid.query.sql.symbol
Methods in org.teiid.query.sql.symbol that return AggregateSymbol.Type Modifier and Type Method Description AggregateSymbol.Type
AggregateSymbol. getAggregateFunction()
Get the aggregate function type - this will map to one of the reserved words for the aggregate functions.static AggregateSymbol.Type
AggregateSymbol.Type. valueOf(String name)
Returns the enum constant of this type with the specified name.static AggregateSymbol.Type[]
AggregateSymbol.Type. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.teiid.query.sql.symbol with parameters of type AggregateSymbol.Type Modifier and Type Method Description void
AggregateSymbol. setAggregateFunction(AggregateSymbol.Type aggregateFunction)
Set the aggregate function.Constructors in org.teiid.query.sql.symbol with parameters of type AggregateSymbol.Type Constructor Description AggregateSymbol(String name, AggregateSymbol.Type aggregateFunction, boolean isDistinct, Expression[] args)
Constructor used for cloning
-