Uses of Interface
org.seedstack.business.pagination.Slice
-
Packages that use Slice Package Description org.seedstack.business.assembler.dsl Provides a fluent DSL to do advanced domain-object/DTO mapping operations.org.seedstack.business.pagination Provides classes, interfaces and annotations to paginate domain objects.org.seedstack.business.pagination.dsl Provides a fluent DSL to paginate domain objects. -
-
Uses of Slice in org.seedstack.business.assembler.dsl
Methods in org.seedstack.business.assembler.dsl that return Slice Modifier and Type Method Description Slice<T>MergeAs. asSlice()Merge as a slice of items.<D> Slice<D>AssembleMultiple. toSliceOf(Class<D> dtoClass)Assembles to aSliceof DTO. -
Uses of Slice in org.seedstack.business.pagination
Subinterfaces of Slice in org.seedstack.business.pagination Modifier and Type Interface Description interfacePage<T>An indexed page of contiguous items taken from a bigger list. -
Uses of Slice in org.seedstack.business.pagination.dsl
Classes in org.seedstack.business.pagination.dsl with type parameters of type Slice 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.interfaceSpecificationPicker<S extends Slice<T>,T>An element of thePaginatorDSL allowing to specify the specification that will be used to retrieve objects from the repository.Methods in org.seedstack.business.pagination.dsl that return types with arguments of type Slice Modifier and Type Method Description <C extends Comparable<? super C>>
LimitPicker<Slice<T>,T>KeyValuePicker. after(C value)Specify the value used as lower-boundary of the previously specified attribute.<C extends Comparable<? super C>>
LimitPicker<Slice<T>,T>KeyValuePicker. before(C value)Specify the value used as upper-boundary of the previously specified attribute.LimitPicker<Slice<T>,T>SlicePaginationPicker. byOffset(long startingOffset)Choose an offset-based pagination type.
-