Class Summarization
- java.lang.Object
-
- org.hibernate.sql.ast.tree.expression.Summarization
-
- All Implemented Interfaces:
SqlSelectionProducer
,Expression
,SqlAstNode
public class Summarization extends Object implements Expression
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
Summarization.Kind
-
Constructor Summary
Constructors Constructor Description Summarization(Summarization.Kind kind, List<Expression> groupings)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
accept(SqlAstWalker walker)
MappingModelExpressible
getExpressionType()
The type for this expressionList<Expression>
getGroupings()
Summarization.Kind
getKind()
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.hibernate.sql.ast.tree.expression.Expression
createDomainResultSqlSelection, createSqlSelection, getColumnReference
-
-
-
-
Constructor Detail
-
Summarization
public Summarization(Summarization.Kind kind, List<Expression> groupings)
-
-
Method Detail
-
getKind
public Summarization.Kind getKind()
-
getGroupings
public List<Expression> getGroupings()
-
getExpressionType
public MappingModelExpressible getExpressionType()
Description copied from interface:Expression
The type for this expression- Specified by:
getExpressionType
in interfaceExpression
-
accept
public void accept(SqlAstWalker walker)
- Specified by:
accept
in interfaceSqlAstNode
-
-