| Package | Description |
|---|---|
| com.mmnaseri.utils.spring.data.query | |
| com.mmnaseri.utils.spring.data.query.impl |
| Modifier and Type | Interface and Description |
|---|---|
interface |
PageParameterExtractor
This interface will let us extract
Page metadata for a given method invocation. |
interface |
SortParameterExtractor
This interface encapsulates the process of extracting
Sort metadata from a given query
method invocation. |
| Modifier and Type | Class and Description |
|---|---|
class |
AbstractSortParameterExtractor
This class will provide support for converting
Spring Data sort objects
into sort objects defined within this framework. |
class |
DirectSortParameterExtractor
This extractor will expect to receive a
Sort object via
the very last parameter of a query method invocation. |
class |
PageablePageParameterExtractor
This extractor will expect to see a
Pageable as the last parameter passed to a query method
invocation, and converts that to a valid page. |
class |
PageableSortParameterExtractor
This extractor expects to see a
Pageable passed as the last argument to a query method call and
tries to ask the pageable for the sort metadata. |
class |
WrappedSortParameterExtractor
This extractor will return the statically defined sort metadata for a query method (as parsed from the method name).
|
Copyright © 2014–2016. All rights reserved.