Spring Data Core

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.domain.jaxb 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. 
org.springframework.data.web Integration with Spring MVC. 
 

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.domain.jaxb
 

Methods in org.springframework.data.domain.jaxb that return Sort
 Sort SortAdapter.unmarshal(SpringDataJaxb.SortDto source)
           
 

Methods in org.springframework.data.domain.jaxb with parameters of type Sort
 SpringDataJaxb.SortDto SortAdapter.marshal(Sort source)
           
 

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.
 

Uses of Sort in org.springframework.data.web
 

Methods in org.springframework.data.web that return Sort
 Sort SortHandlerMethodArgumentResolver.resolveArgument(MethodParameter parameter, ModelAndViewContainer mavContainer, NativeWebRequest webRequest, WebDataBinderFactory binderFactory)
           
 

Methods in org.springframework.data.web with parameters of type Sort
protected  List<String> SortHandlerMethodArgumentResolver.foldIntoExpressions(Sort sort)
          Folds the given Sort instance into a List of sort expressions, accumulating Sort.Order instances of the same direction into a single expression if they are in order.
protected  List<String> SortHandlerMethodArgumentResolver.legacyFoldExpressions(Sort sort)
          Folds the given Sort instance into two expressions.
 void SortHandlerMethodArgumentResolver.setFallbackSort(Sort fallbackSort)
          Configures the Sort to be used as fallback in case no SortDefault or SortDefault.SortDefaults (the latter only supported in legacy mode) can be found at the method parameter to be resolved.
 


Spring Data Core

Copyright © 2011-2013-2013 Pivotal. All Rights Reserved.