public interface StoreQuery extends MetaModelQueryDsl<Store,StoreQuery,StoreQueryModel,StoreExpansionModel<Store>>
MAX_OFFSET, MIN_OFFSET
Modifier and Type | Method and Description |
---|---|
static StoreQuery |
of() |
StoreQuery |
plusExpansionPaths(Function<StoreExpansionModel<Store>,ExpansionPathContainer<Store>> m)
Creates a new object with the properties of the old object but adds a new expansion path to it by using meta models.
|
StoreQuery |
plusPredicates(Function<StoreQueryModel,QueryPredicate<Store>> m)
Returns a new instance with the new predicate appended (AND semantics).
|
StoreQuery |
plusPredicates(List<QueryPredicate<Store>> queryPredicates)
Returns a new instance with the new predicate list appended to the existing predicates (AND semantic).
|
StoreQuery |
plusPredicates(QueryPredicate<Store> queryPredicate)
Returns a new instance with the new predicate appended to the existing predicates (AND semantic).
|
StoreQuery |
plusSort(Function<StoreQueryModel,QuerySort<Store>> m)
Returns a query with the sort expression appended to the existing ones.
|
StoreQuery |
plusSort(List<QuerySort<Store>> sort)
Returns a query with the sort expressions appended to the existing ones.
|
StoreQuery |
plusSort(QuerySort<Store> sort)
Returns a query with the sort expression appended to the existing ones.
|
static com.fasterxml.jackson.core.type.TypeReference<PagedQueryResult<Store>> |
resultTypeReference()
Creates a container which contains the full Java type information to deserialize the query result (NOT this class) from JSON.
|
StoreQuery |
withExpansionPaths(Function<StoreExpansionModel<Store>,ExpansionPathContainer<Store>> m)
Creates a new object with the properties of the old object but replaces all expansion paths with a single
expansionPath by using meta models. |
StoreQuery |
withFetchTotal(boolean fetchTotal)
Enables/disables a flag it the total amount of items should be counted.
|
StoreQuery |
withLimit(Long limit)
Creates a new instance which a limited amount of results.
|
StoreQuery |
withOffset(Long offset)
Returns a new query with the new offset as offset.
|
StoreQuery |
withPredicates(Function<StoreQueryModel,QueryPredicate<Store>> predicateFunction)
Returns a new instance with the new predicate as only predicate.
|
StoreQuery |
withPredicates(List<QueryPredicate<Store>> queryPredicates)
Returns a new instance with the new predicate list as predicates.
|
StoreQuery |
withPredicates(QueryPredicate<Store> queryPredicate)
Returns a new instance with the new predicate as only predicate.
|
StoreQuery |
withSort(Function<StoreQueryModel,QuerySort<Store>> m)
Returns a query with the new sort as only sort parameter.
|
StoreQuery |
withSort(List<QuerySort<Store>> sort)
Returns a query with the new sort list as only sort parameters.
|
StoreQuery |
withSort(QuerySort<Store> sort)
Returns a query with the new sort as only sort parameter.
|
StoreQuery |
withSortMulti(Function<StoreQueryModel,List<QuerySort<Store>>> m)
Returns a query with the new sort list as only sort parameters.
|
plusPredicates, plusSort, withPredicates, withQueryParam, withSort
withLimit, withOffset
endpoint, expansionPaths, fetchTotal, limit, offset, predicates, sort
deserialize, toQuery
canDeserialize, httpRequestIntent
plusExpansionPaths, plusExpansionPaths, plusExpansionPaths, plusExpansionPaths, withExpansionPaths, withExpansionPaths, withExpansionPaths, withExpansionPaths
static com.fasterxml.jackson.core.type.TypeReference<PagedQueryResult<Store>> resultTypeReference()
static StoreQuery of()
StoreQuery plusPredicates(Function<StoreQueryModel,QueryPredicate<Store>> m)
MetaModelQueryDsl
plusPredicates
in interface MetaModelQueryDsl<Store,StoreQuery,StoreQueryModel,StoreExpansionModel<Store>>
m
- function given a meta model description of the model return a QueryPredicate
MetaModelQueryDsl.withPredicates(Function)
StoreQuery plusPredicates(QueryPredicate<Store> queryPredicate)
QueryDsl
plusPredicates
in interface MetaModelQueryDsl<Store,StoreQuery,StoreQueryModel,StoreExpansionModel<Store>>
plusPredicates
in interface QueryDsl<Store,StoreQuery>
queryPredicate
- the new predicateQueryDsl.withPredicates(QueryPredicate)
StoreQuery plusPredicates(List<QueryPredicate<Store>> queryPredicates)
QueryDsl
plusPredicates
in interface MetaModelQueryDsl<Store,StoreQuery,StoreQueryModel,StoreExpansionModel<Store>>
plusPredicates
in interface QueryDsl<Store,StoreQuery>
queryPredicates
- the new predicate listQueryDsl.withPredicates(List)
StoreQuery plusSort(Function<StoreQueryModel,QuerySort<Store>> m)
MetaModelQueryDsl
plusSort
in interface MetaModelQueryDsl<Store,StoreQuery,StoreQueryModel,StoreExpansionModel<Store>>
m
- function given a meta model description of the model returns a list of QuerySort
MetaModelQueryDsl.withSort(Function)
StoreQuery plusSort(List<QuerySort<Store>> sort)
QueryDsl
plusSort
in interface MetaModelQueryDsl<Store,StoreQuery,StoreQueryModel,StoreExpansionModel<Store>>
plusSort
in interface QueryDsl<Store,StoreQuery>
sort
- sort expressions how the results of the query should be sortedQueryDsl.withSort(List)
StoreQuery plusSort(QuerySort<Store> sort)
QueryDsl
plusSort
in interface MetaModelQueryDsl<Store,StoreQuery,StoreQueryModel,StoreExpansionModel<Store>>
plusSort
in interface QueryDsl<Store,StoreQuery>
sort
- sort expression how the results of the query should be sortedQueryDsl.withSort(QuerySort)
StoreQuery withPredicates(Function<StoreQueryModel,QueryPredicate<Store>> predicateFunction)
MetaModelQueryDsl
withPredicates
in interface MetaModelQueryDsl<Store,StoreQuery,StoreQueryModel,StoreExpansionModel<Store>>
predicateFunction
- function given a meta model description of the model return a QueryPredicate
MetaModelQueryDsl.plusPredicates(Function)
StoreQuery withPredicates(QueryPredicate<Store> queryPredicate)
QueryDsl
withPredicates
in interface MetaModelQueryDsl<Store,StoreQuery,StoreQueryModel,StoreExpansionModel<Store>>
withPredicates
in interface QueryDsl<Store,StoreQuery>
queryPredicate
- the new predicateQueryDsl.plusPredicates(QueryPredicate)
StoreQuery withPredicates(List<QueryPredicate<Store>> queryPredicates)
QueryDsl
withPredicates
in interface MetaModelQueryDsl<Store,StoreQuery,StoreQueryModel,StoreExpansionModel<Store>>
withPredicates
in interface QueryDsl<Store,StoreQuery>
queryPredicates
- the new predicate listQueryDsl.plusPredicates(List)
StoreQuery withSort(Function<StoreQueryModel,QuerySort<Store>> m)
MetaModelQueryDsl
withSort
in interface MetaModelQueryDsl<Store,StoreQuery,StoreQueryModel,StoreExpansionModel<Store>>
m
- function given a meta model description of the model returns a QuerySort
MetaModelQueryDsl.plusSort(Function)
StoreQuery withSort(List<QuerySort<Store>> sort)
QueryDsl
withSort
in interface MetaModelQueryDsl<Store,StoreQuery,StoreQueryModel,StoreExpansionModel<Store>>
withSort
in interface QueryDsl<Store,StoreQuery>
sort
- list of sorts how the results of the query should be sortedQueryDsl.plusSort(List)
StoreQuery withSort(QuerySort<Store> sort)
QueryDsl
withSort
in interface MetaModelQueryDsl<Store,StoreQuery,StoreQueryModel,StoreExpansionModel<Store>>
withSort
in interface QueryDsl<Store,StoreQuery>
sort
- sort expression how the results of the query should be sortedQueryDsl.plusSort(QuerySort)
StoreQuery withSortMulti(Function<StoreQueryModel,List<QuerySort<Store>>> m)
MetaModelQueryDsl
withSortMulti
in interface MetaModelQueryDsl<Store,StoreQuery,StoreQueryModel,StoreExpansionModel<Store>>
m
- function given a meta model description of the model returns a list of QuerySort
MetaModelQueryDsl.plusSort(List)
,
MetaModelQueryDsl.withSort(Function)
StoreQuery plusExpansionPaths(Function<StoreExpansionModel<Store>,ExpansionPathContainer<Store>> m)
MetaModelReferenceExpansionDsl
An example in the product projection context:
final ProductProjectionByIdGet fetch1 = ProductProjectionByIdGet.of("id", ProductProjectionType.CURRENT) .plusExpansionPaths(m -> m.categories()); assertThat(fetch1.expansionPaths()) .isEqualTo(asList(ExpansionPath.of("categories[*]"))); final ProductProjectionByIdGet fetch2 = fetch1.plusExpansionPaths(m -> m.productType()); assertThat(fetch2.expansionPaths()) .isEqualTo(asList(ExpansionPath.of("categories[*]"), ExpansionPath.of("productType"))) .isEqualTo(listOf(fetch1.expansionPaths(), ExpansionPath.of("productType"))); //this is equivalent to final ExpansionPath<ProductProjection> categoryExpand = ProductProjectionExpansionModel.of().categories().expansionPaths().get(0); final ExpansionPath<ProductProjection> productTypeExpand = ProductProjectionExpansionModel.of().productType().expansionPaths().get(0); final ProductProjectionByIdGet fetchB = ProductProjectionByIdGet.of("id", ProductProjectionType.CURRENT) .withExpansionPaths(asList(categoryExpand, productTypeExpand)); assertThat(fetchB.expansionPaths()) .isEqualTo(asList(ExpansionPath.of("categories[*]"), ExpansionPath.of("productType")));
See the test code.
plusExpansionPaths
in interface MetaModelReferenceExpansionDsl<Store,StoreQuery,StoreExpansionModel<Store>>
m
- function to use the meta model for expansions to create an expansion pathStoreQuery withExpansionPaths(Function<StoreExpansionModel<Store>,ExpansionPathContainer<Store>> m)
MetaModelReferenceExpansionDsl
expansionPath
by using meta models.
An example in the product projection context:
final ProductProjectionByIdGet fetch = ProductProjectionByIdGet.of("id", ProductProjectionType.CURRENT) .plusExpansionPaths(ProductProjectionExpansionModel.of().categories()); assertThat(fetch.expansionPaths()) .isEqualTo(asList(ExpansionPath.of("categories[*]"))); final ProductProjectionByIdGet fetch2 = fetch.withExpansionPaths(m -> m.productType()); assertThat(fetch.expansionPaths()).overridingErrorMessage("old object is unchanged") .isEqualTo(asList(ExpansionPath.of("categories[*]"))); assertThat(fetch2.expansionPaths()).isEqualTo(asList(ExpansionPath.of("productType"))); assertThat(fetch2).isNotSameAs(fetch);
See the test code.
withExpansionPaths
in interface MetaModelReferenceExpansionDsl<Store,StoreQuery,StoreExpansionModel<Store>>
m
- function to use the meta model for expansions to create an expansion pathStoreQuery withFetchTotal(boolean fetchTotal)
QueryDsl
If fetchTotal
is true then PagedQueryResult.getTotal()
is null.
withFetchTotal
in interface QueryDsl<Store,StoreQuery>
fetchTotal
- enable the total count if true (default on the construction of the QueryDsl).QueryDsl
as this instance but with the updated flagStoreQuery withLimit(Long limit)
QueryDsl
withLimit
in interface QueryDsl<Store,StoreQuery>
limit
- the maximum amount of items of T
which should be included in the PagedQueryResult
.PagedQueryResult.getResults()
StoreQuery withOffset(Long offset)
QueryDsl
withOffset
in interface QueryDsl<Store,StoreQuery>
offset
- the number of items which should be omitted in the query result.