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 aDomainResultProducer
-
-
Constructor Summary
Constructors Constructor Description SelectClause()
SelectClause(int estimateSelectionSize)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
accept(SqlAstWalker sqlTreeWalker)
void
addSqlSelection(SqlSelection sqlSelection)
List<SqlSelection>
getSqlSelections()
boolean
isDistinct()
void
makeDistinct(boolean distinct)
-
-
-
Method Detail
-
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 interfaceSqlAstNode
-
-