Class ProductDiscountPagedQueryResponseBuilder
- All Implemented Interfaces:
Builder<ProductDiscountPagedQueryResponse>
Example to create an instance using the builder pattern
ProductDiscountPagedQueryResponse productDiscountPagedQueryResponse = ProductDiscountPagedQueryResponse.builder()
.limit(0.3)
.offset(0.3)
.count(0.3)
.plusResults(resultsBuilder -> resultsBuilder)
.build()
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionProductDiscounts matching the query.build()
builds ProductDiscountPagedQueryResponse with checking for non-null required valuesbuilds ProductDiscountPagedQueryResponse 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.ProductDiscounts matching the query.getTotal()
Total number of results matching the query.Number of results requested.of()
factory method for an instance of ProductDiscountPagedQueryResponseBuilderof
(ProductDiscountPagedQueryResponse template) create builder for ProductDiscountPagedQueryResponse instanceNumber of elements skipped.plusResults
(ProductDiscount... results) ProductDiscounts matching the query.ProductDiscounts matching the query.results
(ProductDiscount... results) ProductDiscounts matching the query.results
(List<ProductDiscount> results) ProductDiscounts matching the query.ProductDiscounts matching the query.Total number of results matching the query.ProductDiscounts matching the query.
-
Constructor Details
-
ProductDiscountPagedQueryResponseBuilder
public ProductDiscountPagedQueryResponseBuilder()
-
-
Method Details
-
limit
Number of results requested.
- Parameters:
limit
- value to be set- Returns:
- Builder
-
offset
Number of elements skipped.
- Parameters:
offset
- 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
-
results
ProductDiscounts matching the query.
- Parameters:
results
- value to be set- Returns:
- Builder
-
results
ProductDiscounts matching the query.
- Parameters:
results
- value to be set- Returns:
- Builder
-
plusResults
ProductDiscounts matching the query.
- Parameters:
results
- value to be set- Returns:
- Builder
-
plusResults
public ProductDiscountPagedQueryResponseBuilder plusResults(Function<ProductDiscountBuilder, ProductDiscountBuilder> builder) ProductDiscounts matching the query.
- Parameters:
builder
- function to build the results value- Returns:
- Builder
-
withResults
public ProductDiscountPagedQueryResponseBuilder withResults(Function<ProductDiscountBuilder, ProductDiscountBuilder> builder) ProductDiscounts matching the query.
- Parameters:
builder
- function to build the results value- Returns:
- Builder
-
addResults
public ProductDiscountPagedQueryResponseBuilder addResults(Function<ProductDiscountBuilder, ProductDiscount> builder) ProductDiscounts matching the query.
- Parameters:
builder
- function to build the results value- Returns:
- Builder
-
setResults
public ProductDiscountPagedQueryResponseBuilder setResults(Function<ProductDiscountBuilder, ProductDiscount> builder) ProductDiscounts matching the query.
- Parameters:
builder
- function to build the results value- Returns:
- Builder
-
getLimit
Number of results requested.
- Returns:
- limit
-
getOffset
Number of elements skipped.
- Returns:
- offset
-
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
-
getResults
ProductDiscounts matching the query.
- Returns:
- results
-
build
builds ProductDiscountPagedQueryResponse with checking for non-null required values- Specified by:
build
in interfaceBuilder<ProductDiscountPagedQueryResponse>
- Returns:
- ProductDiscountPagedQueryResponse
-
buildUnchecked
builds ProductDiscountPagedQueryResponse without checking for non-null required values- Returns:
- ProductDiscountPagedQueryResponse
-
of
factory method for an instance of ProductDiscountPagedQueryResponseBuilder- Returns:
- builder
-
of
public static ProductDiscountPagedQueryResponseBuilder of(ProductDiscountPagedQueryResponse template) create builder for ProductDiscountPagedQueryResponse instance- Parameters:
template
- instance with prefilled values for the builder- Returns:
- builder
-