Uses of Class
org.eclipse.datatools.connectivity.oda.spec.result.SortSpecification

Packages that use SortSpecification
org.eclipse.datatools.connectivity.oda.spec The runtime API for an ODA data set query's dynamic result set specification. 
org.eclipse.datatools.connectivity.oda.spec.result Defines the result set specification of the Open Data Access (ODA) dynamicResultSet extension point. 
org.eclipse.datatools.connectivity.oda.spec.util Defines utilities for use with the Open Data Access (ODA) query specification. 
 

Uses of SortSpecification in org.eclipse.datatools.connectivity.oda.spec
 

Methods in org.eclipse.datatools.connectivity.oda.spec with parameters of type SortSpecification
 void IValidator.validate(SortSpecification sortSpec, ValidationContext context)
          Validates the specified sort specification in the specified context.
 

Uses of SortSpecification in org.eclipse.datatools.connectivity.oda.spec.result
 

Methods in org.eclipse.datatools.connectivity.oda.spec.result that return SortSpecification
static SortSpecification InternalResultSpecFactory.createSortSpecification()
           
static SortSpecification InternalResultSpecFactory.createSortSpecification(int sortMode)
           
 SortSpecification ResultSetSpecification.getSortSpecification()
          Gets the current sorting specification of a query result set.
 

Methods in org.eclipse.datatools.connectivity.oda.spec.result with parameters of type SortSpecification
 void ResultSetSpecification.setSortSpecification(SortSpecification sortSpec)
          Specifies the sorting characteristics of a query result set.
 

Uses of SortSpecification in org.eclipse.datatools.connectivity.oda.spec.util
 

Methods in org.eclipse.datatools.connectivity.oda.spec.util that return SortSpecification
static SortSpecification SortSpecMigrator.convertSortSpecification(SortSpec oldSortSpec)
          Converts the specified pre-3.2 SortSpec instance to a SortSpecification instance that can be used in a QuerySpecification.
 SortSpecification QuerySpecificationHelper.createSortSpecification()
          Returns an empty sort specification instance created by the QuerySpecificationFactory specified in the constructor.
 SortSpecification QuerySpecificationHelper.createSortSpecification(int sortMode)
          Returns an empty sort specification instance created by the QuerySpecificationFactory specified in the constructor.
static SortSpecification QuerySpecificationHelper.getSortSpecification(QuerySpecification querySpec)
          Gets the sort specification from the specified querySpec.
 

Methods in org.eclipse.datatools.connectivity.oda.spec.util with parameters of type SortSpecification
static SortSpec SortSpecMigrator.convertSortSpecification(SortSpecification resultSortSpec)
          Converts the specified SortSpecification instance used in a QuerySpecification to a pre-3.2 SortSpec instance.
 QuerySpecification QuerySpecificationHelper.createQuerySpecification(FilterExpression filterExpr, ResultProjection projectionSpec, SortSpecification sortSpec)
          Creates a query specification instance with the specified filter expression root, result projection, and/or sort specification.
 QuerySpecification QuerySpecificationHelper.createQuerySpecification(SortSpecification sortSpec)
          Creates a query specification instance with the specified sort specification.
static boolean ValidatorUtil.isInvalidSortSpec(SortSpecification sortSpec, OdaException rootEx)
          Indicates whether the specified sort specification is one of the cause(s) in the specified OdaException chain.
static OdaException ValidatorUtil.newSortSpecException(SortSpecification sortSpec, OdaException driverEx)
          Creates and returns a top-level OdaException to indicate that the specified sort specification is the cause of the specified driverEx exception.
static OdaException ValidatorUtil.newSortSpecException(java.lang.String message, SortSpecification sortSpec)
          Creates and returns a top-level OdaException to indicate that the specified sort specification is the cause of the specified driverEx exception.
static void ValidatorUtil.validateHasNoNullOrderingSpec(SortSpecification sortSpec)
          Validates that null ordering is not specified in the given sortSpec.