PagedListFilterRepository<T, F> class abstract interface

PagedListFilterRepository extends PagedListRepository with filtering capabilities.

T - the type of returned items. F - the filter type. It can be just a String for queries as well as any object when filtering is more sophisticated.

Implemented types

Constructors

PagedListFilterRepository()

Properties

hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

getAll(Page page) Future<List<T>>
Retrieves items meeting the pagination restriction provided by the page object. When items are exceeded should return an empty list or throw the PageNotFoundException.
inherited
getBy(Page page, F filter) Future<List<T>>
Retrieves items meeting the filter as well as the pagination restriction provided by the page object and. When items are exceeded should return an empty list or throw the PageNotFoundException.
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited