Uses of Class
org.h2.engine.UserAggregate

Packages that use UserAggregate
org.h2.engine Contains high level classes of the database and classes that don't fit in another sub-package. 
org.h2.expression Expressions include mathematical operations, conditions, simple values, and functions. 
 

Uses of UserAggregate in org.h2.engine
 

Methods in org.h2.engine that return UserAggregate
 UserAggregate Database.findAggregate(java.lang.String name)
          Get the user defined aggregate function if it exists, or null if not.
 

Methods in org.h2.engine that return types with arguments of type UserAggregate
 java.util.ArrayList<UserAggregate> Database.getAllAggregates()
           
 

Uses of UserAggregate in org.h2.expression
 

Constructors in org.h2.expression with parameters of type UserAggregate
JavaAggregate(UserAggregate userAggregate, Expression[] args, Select select)