Package knf.hydra.core.models.data
Class PagerData
-
- All Implemented Interfaces:
public final class PagerData<Key extends Object, Value extends Object>Pager data representing a PagingData
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public classPagerData.Companion
-
Field Summary
Fields Modifier and Type Field Description private final IntegerpageSizeprivate final PagingSource<Key, Value>sourcepublic final static PagerData.CompanionCompanion
-
Constructor Summary
Constructors Constructor Description PagerData(Integer pageSize, PagingSource<Key, Value> source)
-
Method Summary
Modifier and Type Method Description final IntegergetPageSize()Page size for the PagingData final PagingSource<Key, Value>getSource()PagerData source to be created -
-
Constructor Detail
-
PagerData
PagerData(Integer pageSize, PagingSource<Key, Value> source)
-
-
Method Detail
-
getPageSize
final Integer getPageSize()
Page size for the PagingData
-
getSource
final PagingSource<Key, Value> getSource()
PagerData source to be created
-
-
-
-