Class ProductProjectionPagedQueryResponseBuilder
- All Implemented Interfaces:
io.vrap.rmf.base.client.Builder<ProductProjectionPagedQueryResponse>
Example to create an instance using the builder pattern
ProductProjectionPagedQueryResponse productProjectionPagedQueryResponse = ProductProjectionPagedQueryResponse.builder()
.limit(0.3)
.count(0.3)
.offset(0.3)
.plusResults(resultsBuilder -> resultsBuilder)
.build()
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionProductProjections matching the query.build()
builds ProductProjectionPagedQueryResponse with checking for non-null required valuesbuilds ProductProjectionPagedQueryResponse without checking for non-null required valuesActual number of results returned.getCount()
Actual number of results returned.getLimit()
Number of results requested.Number of elements skipped.ProductProjections matching the query.getTotal()
Total number of results matching the query.Number of results requested.of()
factory method for an instance of ProductProjectionPagedQueryResponseBuilderof
(ProductProjectionPagedQueryResponse template) create builder for ProductProjectionPagedQueryResponse instanceNumber of elements skipped.plusResults
(ProductProjection... results) ProductProjections matching the query.ProductProjections matching the query.results
(ProductProjection... results) ProductProjections matching the query.results
(List<ProductProjection> results) ProductProjections matching the query.ProductProjections matching the query.Total number of results matching the query.ProductProjections matching the query.
-
Constructor Details
-
ProductProjectionPagedQueryResponseBuilder
public ProductProjectionPagedQueryResponseBuilder()
-
-
Method Details
-
limit
Number of results requested.
- Parameters:
limit
- value to be set- Returns:
- Builder
-
count
Actual number of results returned.
- Parameters:
count
- value to be set- Returns:
- Builder
-
total
Total number of results matching the query. This number is an estimation that is not strongly consistent. This field is returned by default. For improved performance, calculating this field can be deactivated by using the query parameter
withTotal=false
. When the results are filtered with a Query Predicate,total
is subject to a limit.- Parameters:
total
- value to be set- Returns:
- Builder
-
offset
Number of elements skipped.
- Parameters:
offset
- value to be set- Returns:
- Builder
-
results
ProductProjections matching the query.
- Parameters:
results
- value to be set- Returns:
- Builder
-
results
ProductProjections matching the query.
- Parameters:
results
- value to be set- Returns:
- Builder
-
plusResults
ProductProjections matching the query.
- Parameters:
results
- value to be set- Returns:
- Builder
-
plusResults
public ProductProjectionPagedQueryResponseBuilder plusResults(Function<ProductProjectionBuilder, ProductProjectionBuilder> builder) ProductProjections matching the query.
- Parameters:
builder
- function to build the results value- Returns:
- Builder
-
withResults
public ProductProjectionPagedQueryResponseBuilder withResults(Function<ProductProjectionBuilder, ProductProjectionBuilder> builder) ProductProjections matching the query.
- Parameters:
builder
- function to build the results value- Returns:
- Builder
-
addResults
public ProductProjectionPagedQueryResponseBuilder addResults(Function<ProductProjectionBuilder, ProductProjection> builder) ProductProjections matching the query.
- Parameters:
builder
- function to build the results value- Returns:
- Builder
-
setResults
public ProductProjectionPagedQueryResponseBuilder setResults(Function<ProductProjectionBuilder, ProductProjection> builder) ProductProjections matching the query.
- Parameters:
builder
- function to build the results value- Returns:
- Builder
-
getLimit
Number of results requested.
- Returns:
- limit
-
getCount
Actual number of results returned.
- Returns:
- count
-
getTotal
Total number of results matching the query. This number is an estimation that is not strongly consistent. This field is returned by default. For improved performance, calculating this field can be deactivated by using the query parameter
withTotal=false
. When the results are filtered with a Query Predicate,total
is subject to a limit.- Returns:
- total
-
getOffset
Number of elements skipped.
- Returns:
- offset
-
getResults
ProductProjections matching the query.
- Returns:
- results
-
build
builds ProductProjectionPagedQueryResponse with checking for non-null required values- Specified by:
build
in interfaceio.vrap.rmf.base.client.Builder<ProductProjectionPagedQueryResponse>
- Returns:
- ProductProjectionPagedQueryResponse
-
buildUnchecked
builds ProductProjectionPagedQueryResponse without checking for non-null required values- Returns:
- ProductProjectionPagedQueryResponse
-
of
factory method for an instance of ProductProjectionPagedQueryResponseBuilder- Returns:
- builder
-
of
public static ProductProjectionPagedQueryResponseBuilder of(ProductProjectionPagedQueryResponse template) create builder for ProductProjectionPagedQueryResponse instance- Parameters:
template
- instance with prefilled values for the builder- Returns:
- builder
-