Uses of Interface
org.seedstack.business.pagination.dsl.SpecificationPicker
-
Packages that use SpecificationPicker Package Description org.seedstack.business.pagination.dsl Provides a fluent DSL to paginate domain objects. -
-
Uses of SpecificationPicker in org.seedstack.business.pagination.dsl
Subinterfaces of SpecificationPicker in org.seedstack.business.pagination.dsl Modifier and Type Interface Description interfaceLimitPicker<S extends Slice<T>,T>An element of thePaginatorDSL allowing to specify a limit on the number of objects returned, in the case of an offset-based pagination.interfaceSizePicker<T>An element of thePaginatorDSL allowing to specify the size of the page in the case of page-based pagination.Methods in org.seedstack.business.pagination.dsl that return SpecificationPicker Modifier and Type Method Description SpecificationPicker<S,T>LimitPicker. limit(long limit)Specify a limit on the number of objects returned.default SpecificationPicker<Page<T>,T>SizePicker. ofSize(long size)Specify the size of the page.
-