Class SortSpecification
- java.lang.Object
-
- org.hibernate.sql.ast.tree.select.SortSpecification
-
- All Implemented Interfaces:
SqlAstNode
public class SortSpecification extends Object implements SqlAstNode
-
-
Constructor Summary
Constructors Constructor Description SortSpecification(Expression sortExpression, SortDirection sortOrder)
SortSpecification(Expression sortExpression, SortDirection sortOrder, NullPrecedence nullPrecedence)
SortSpecification(Expression sortExpression, SortDirection sortOrder, NullPrecedence nullPrecedence, boolean ignoreCase)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
accept(SqlAstWalker sqlTreeWalker)
NullPrecedence
getNullPrecedence()
Expression
getSortExpression()
SortDirection
getSortOrder()
boolean
isIgnoreCase()
-
-
-
Constructor Detail
-
SortSpecification
public SortSpecification(Expression sortExpression, SortDirection sortOrder)
-
SortSpecification
public SortSpecification(Expression sortExpression, SortDirection sortOrder, NullPrecedence nullPrecedence)
-
SortSpecification
public SortSpecification(Expression sortExpression, SortDirection sortOrder, NullPrecedence nullPrecedence, boolean ignoreCase)
-
-
Method Detail
-
getSortExpression
public Expression getSortExpression()
-
getSortOrder
public SortDirection getSortOrder()
-
getNullPrecedence
public NullPrecedence getNullPrecedence()
-
isIgnoreCase
public boolean isIgnoreCase()
-
accept
public void accept(SqlAstWalker sqlTreeWalker)
- Specified by:
accept
in interfaceSqlAstNode
-
-