Interface SortingRepository<E,ID>
-
- Type Parameters:
E- Concrete type of the entity to be managed by the repository.ID- Concrete type of the entity's id.
public interface SortingRepository<E,ID>Interface for a repository with sorted reading operations.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.Iterable<E>findAll(SortingData sortingData)Returns all entities using the givensortingData.
-
-
-
Method Detail
-
findAll
java.lang.Iterable<E> findAll(SortingData sortingData)
Returns all entities using the givensortingData.- Parameters:
sortingData- ASortingDataobject that indicates how sorting must be performed.- Returns:
- All entities, applying sorting according to the given
sortingData.
-
-