Methods inherited from interface org.springframework.data.repository.ListCrudRepository
findAll, findAllById, saveAll
Methods inherited from interface org.springframework.data.repository.ListPagingAndSortingRepository
findAll
Methods inherited from interface org.springframework.data.repository.PagingAndSortingRepository
findAll
Methods inherited from interface org.springframework.data.repository.query.QueryByExampleExecutor
count, exists, findAll, findBy, findOne
Method Details
findAllOrderedByKnownName
@Query("SELECT a FROM Athlete a ORDER BY a.knownName")
org.springframework.data.domain.Page<Athlete>findAllOrderedByKnownName(org.springframework.data.domain.Pageable pageable)
Returns a Page of all athletes ordered by their
knownName in ascending order.