Uses of Interface
org.eclipse.datatools.modelbase.sql.query.OrderBySpecification

Packages that use OrderBySpecification
org.eclipse.datatools.modelbase.sql.query   
org.eclipse.datatools.modelbase.sql.query.helper   
org.eclipse.datatools.modelbase.sql.query.util   
org.eclipse.datatools.modelbase.sql.xml.query   
org.eclipse.datatools.sqltools.parsers.sql.query   
org.eclipse.datatools.sqltools.sqlbuilder.model   
org.eclipse.datatools.sqltools.sqlbuilder.views.fullselect   
 

Uses of OrderBySpecification in org.eclipse.datatools.modelbase.sql.query
 

Subinterfaces of OrderBySpecification in org.eclipse.datatools.modelbase.sql.query
 interface OrderByOrdinal
          A representation of the model object 'SQL Order By Ordinal'.
 interface OrderByResultColumn
          A representation of the model object 'Order By Result Column'.
 interface OrderByValueExpression
          A representation of the model object 'SQL Order By Value Expression'.
 

Uses of OrderBySpecification in org.eclipse.datatools.modelbase.sql.query.helper
 

Methods in org.eclipse.datatools.modelbase.sql.query.helper with parameters of type OrderBySpecification
static java.util.Set TableHelper.findColumnReferencesInOrderBySpecification(OrderBySpecification orderBySpec)
          Returns a Set containing all ValueExpressionColumn s found in the given OrderBySpecification.
static boolean StatementHelper.isOrderBySpecificationValid(OrderBySpecification orderBySpec)
           
 

Uses of OrderBySpecification in org.eclipse.datatools.modelbase.sql.query.util
 

Methods in org.eclipse.datatools.modelbase.sql.query.util with parameters of type OrderBySpecification
 java.lang.Object SQLQueryModelSwitch.caseOrderBySpecification(OrderBySpecification object)
          Returns the result of interpreting the object as an instance of 'Order By Specification'.
 

Uses of OrderBySpecification in org.eclipse.datatools.modelbase.sql.xml.query
 

Methods in org.eclipse.datatools.modelbase.sql.xml.query that return OrderBySpecification
 OrderBySpecification XMLAggregateSortSpecification.getOrderBySpec()
          Returns the value of the 'Order By Spec' containment reference.
 

Methods in org.eclipse.datatools.modelbase.sql.xml.query with parameters of type OrderBySpecification
 void XMLAggregateSortSpecification.setOrderBySpec(OrderBySpecification value)
          Sets the value of the 'Order By Spec' containment reference.
 

Uses of OrderBySpecification in org.eclipse.datatools.sqltools.parsers.sql.query
 

Methods in org.eclipse.datatools.sqltools.parsers.sql.query that return OrderBySpecification
 OrderBySpecification SQLQueryParserFactory.createOrderByExpression(QueryValueExpression aOrderByExpr, int orderingSpec, int nullOrdering)
          creates an OrderBySpecification.
 OrderBySpecification SQLQueryParserFactory.createOrderByExpression(QueryValueExpression aOrderByExpr, java.lang.String optAscDesc)
          Deprecated. use SQLQueryParserFactory.createOrderByExpression(QueryValueExpression, int, int)
 

Methods in org.eclipse.datatools.sqltools.parsers.sql.query with parameters of type OrderBySpecification
 java.util.List SQLQueryParserFactory.createOrderByClause(java.util.List aOrderByList, OrderBySpecification aOrderByExpr)
           
 

Uses of OrderBySpecification in org.eclipse.datatools.sqltools.sqlbuilder.model
 

Methods in org.eclipse.datatools.sqltools.sqlbuilder.model with parameters of type OrderBySpecification
static boolean SelectHelper.moveOrderByInStatement(QuerySelectStatement selectStmt, OrderBySpecification anExpr, int movePosition)
          Moves a column in the order by clause to another position (ie new index in the list).
static void SelectHelper.moveOrderByToPosition(OrderBySpecification orderBy, java.util.List orderByList, int position)
          Moves the given OrderBySpecification to the gievn position in the given List containing it
 

Uses of OrderBySpecification in org.eclipse.datatools.sqltools.sqlbuilder.views.fullselect
 

Methods in org.eclipse.datatools.sqltools.sqlbuilder.views.fullselect that return OrderBySpecification
 OrderBySpecification OrderByTableElement.getOrderBy()
           
 

Constructors in org.eclipse.datatools.sqltools.sqlbuilder.views.fullselect with parameters of type OrderBySpecification
OrderByTableElement(QuerySelectStatement target, OrderBySpecification ordrBy)