Uses of Interface
org.hibernate.sql.ast.tree.expression.FunctionExpression
-
Packages that use FunctionExpression Package Description org.hibernate.query.sqm.function Package defining support for HQL, including JPQL as a subset of HQL.org.hibernate.sql.ast.tree.expression AST nodes representing expressions in a SQL tree.org.hibernate.sql.ast.tree.from AST nodes representing root tables and joins in a SQL tree. -
-
Uses of FunctionExpression in org.hibernate.query.sqm.function
Classes in org.hibernate.query.sqm.function that implement FunctionExpression Modifier and Type Class Description class
SelfRenderingAggregateFunctionSqlAstExpression
Representation of an aggregate function call in the SQL AST for impls that know how to render themselves.class
SelfRenderingFunctionSqlAstExpression
Representation of a function call in the SQL AST for impls that know how to render themselves.class
SelfRenderingOrderedSetAggregateFunctionSqlAstExpression
Representation of an aggregate function call in the SQL AST for impls that know how to render themselves.class
SelfRenderingWindowFunctionSqlAstExpression
Representation of a window function call in the SQL AST for impls that know how to render themselves. -
Uses of FunctionExpression in org.hibernate.sql.ast.tree.expression
Subinterfaces of FunctionExpression in org.hibernate.sql.ast.tree.expression Modifier and Type Interface Description interface
AggregateFunctionExpression
Models an aggregate function expression at the SQL AST level.interface
OrderedSetAggregateFunctionExpression
Models an ordered set-aggregate function expression at the SQL AST level.interface
WindowFunctionExpression
Models a window function expression at the SQL AST level. -
Uses of FunctionExpression in org.hibernate.sql.ast.tree.from
Methods in org.hibernate.sql.ast.tree.from that return FunctionExpression Modifier and Type Method Description FunctionExpression
FunctionTableReference. getFunctionExpression()
Constructors in org.hibernate.sql.ast.tree.from with parameters of type FunctionExpression Constructor Description FunctionTableGroup(NavigablePath navigablePath, TableGroupProducer tableGroupProducer, FunctionExpression functionExpression, String sourceAlias, List<String> columnNames, boolean lateral, boolean canUseInnerJoins, SessionFactoryImplementor sessionFactory)
FunctionTableReference(FunctionExpression functionExpression, String identificationVariable, List<String> columnNames, boolean lateral, SessionFactoryImplementor sessionFactory)
-