Spring Data Commons

Uses of Class
org.springframework.data.domain.Sort

Packages that use Sort
org.springframework.data.domain Central domain abstractions especially to be used in combination with the Repository abstraction. 
org.springframework.data.repository Central interfaces for repository abstraction. 
org.springframework.data.repository.query Support classes to work with query methods. 
org.springframework.data.repository.query.parser Support classes for parsing queries from method names. 
 

Uses of Sort in org.springframework.data.domain
 

Methods in org.springframework.data.domain that return Sort
 Sort Sort.and(Sort sort)
          Returns a new Sort consisting of the Sort.Orders of the current Sort combined with the given ones.
 Sort PageRequest.getSort()
           
 Sort PageImpl.getSort()
           
 Sort Pageable.getSort()
          Returns the sorting parameters.
 Sort Page.getSort()
          Returns the sorting parameters for the page.
 Sort Sort.Order.withProperties(String... properties)
          Returns a new Sort instance for the given properties.
 

Methods in org.springframework.data.domain with parameters of type Sort
 Sort Sort.and(Sort sort)
          Returns a new Sort consisting of the Sort.Orders of the current Sort combined with the given ones.
 

Constructors in org.springframework.data.domain with parameters of type Sort
PageRequest(int page, int size, Sort sort)
          Creates a new PageRequest with sort parameters applied.
 

Uses of Sort in org.springframework.data.repository
 

Methods in org.springframework.data.repository with parameters of type Sort
 Iterable<T> PagingAndSortingRepository.findAll(Sort sort)
          Returns all entities sorted by the given options.
 

Uses of Sort in org.springframework.data.repository.query
 

Methods in org.springframework.data.repository.query that return Sort
 Sort ParametersParameterAccessor.getSort()
           
 Sort ParameterAccessor.getSort()
          Returns the sort instance to be used for query creation.
 

Uses of Sort in org.springframework.data.repository.query.parser
 

Methods in org.springframework.data.repository.query.parser that return Sort
 Sort PartTree.getSort()
          Returns the Sort specification parsed from the source or null.
 Sort OrderBySource.toSort()
          Returns the clause as Sort.
 

Methods in org.springframework.data.repository.query.parser with parameters of type Sort
protected abstract  T AbstractQueryCreator.complete(S criteria, Sort sort)
          Actually creates the query object applying the given criteria object and Sort definition.
 T AbstractQueryCreator.createQuery(Sort dynamicSort)
          Creates the actual query object applying the given Sort parameter.
 


Spring Data Commons

Copyright © 2012. All Rights Reserved.