Spring Data Commons

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

Packages that use Sort.Direction
org.springframework.data.domain Central domain abstractions especially to be used in combination with the Repository abstraction. 
 

Uses of Sort.Direction in org.springframework.data.domain
 

Fields in org.springframework.data.domain declared as Sort.Direction
static Sort.Direction Sort.DEFAULT_DIRECTION
           
 

Methods in org.springframework.data.domain that return Sort.Direction
static Sort.Direction Sort.Direction.fromString(String value)
          Returns the Sort.Direction enum for the given String value.
 Sort.Direction Sort.Order.getDirection()
          Returns the order the property shall be sorted for.
static Sort.Direction Sort.Direction.valueOf(String name)
          Returns the enum constant of this type with the specified name.
static Sort.Direction[] Sort.Direction.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in org.springframework.data.domain with parameters of type Sort.Direction
static List<Sort.Order> Sort.Order.create(Sort.Direction direction, Iterable<String> properties)
           
 Sort.Order Sort.Order.with(Sort.Direction order)
          Returns a new Sort.Order with the given Sort.Order.
 

Constructors in org.springframework.data.domain with parameters of type Sort.Direction
PageRequest(int page, int size, Sort.Direction direction, String... properties)
          Creates a new PageRequest with sort parameters applied.
Sort.Order(Sort.Direction direction, String property)
          Creates a new Sort.Order instance. if order is null then order defaults to
Sort(Sort.Direction direction, List<String> properties)
          Creates a new Sort instance.
Sort(Sort.Direction direction, String... properties)
          Creates a new Sort instance.
 


Spring Data Commons

Copyright © 2011. All Rights Reserved.