Class SelectClause

java.lang.Object
org.hibernate.sql.ast.tree.select.SelectClause
All Implemented Interfaces:
SqlAstNode

public class SelectClause extends Object implements SqlAstNode
The SELECT CLAUSE in the SQL AST. Each selection here is a DomainResultProducer
  • Constructor Details

    • SelectClause

      public SelectClause()
    • SelectClause

      public SelectClause(int estimateSelectionSize)
  • Method Details

    • makeDistinct

      public void makeDistinct(boolean distinct)
    • isDistinct

      public boolean isDistinct()
    • addSqlSelection

      public void addSqlSelection(SqlSelection sqlSelection)
    • getSqlSelections

      public List<SqlSelection> getSqlSelections()
    • accept

      public void accept(SqlAstWalker sqlTreeWalker)
      Specified by:
      accept in interface SqlAstNode