Class ProductSelectionPagedQueryResponseBuilder
- All Implemented Interfaces:
Builder<ProductSelectionPagedQueryResponse>
Example to create an instance using the builder pattern
ProductSelectionPagedQueryResponse productSelectionPagedQueryResponse = ProductSelectionPagedQueryResponse.builder()
.limit(0.3)
.offset(0.3)
.count(0.3)
.plusResults(resultsBuilder -> resultsBuilder)
.build()
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionProductSelections matching the query.build()
builds ProductSelectionPagedQueryResponse with checking for non-null required valuesbuilds ProductSelectionPagedQueryResponse 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.ProductSelections matching the query.getTotal()
Total number of results matching the query.Number of results requested.of()
factory method for an instance of ProductSelectionPagedQueryResponseBuilderof
(ProductSelectionPagedQueryResponse template) create builder for ProductSelectionPagedQueryResponse instanceNumber of elements skipped.plusResults
(ProductSelection... results) ProductSelections matching the query.ProductSelections matching the query.results
(ProductSelection... results) ProductSelections matching the query.results
(List<ProductSelection> results) ProductSelections matching the query.ProductSelections matching the query.Total number of results matching the query.ProductSelections matching the query.
-
Constructor Details
-
ProductSelectionPagedQueryResponseBuilder
public ProductSelectionPagedQueryResponseBuilder()
-
-
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. Unlike other endpoints, the Product Selection endpoint does not return this field by default. To get
total
, pass the query parameterwithTotal
set totrue
. When the results are filtered with a Query Predicate,total
is subject to a limit.- Parameters:
total
- value to be set- Returns:
- Builder
-
results
ProductSelections matching the query.
- Parameters:
results
- value to be set- Returns:
- Builder
-
results
ProductSelections matching the query.
- Parameters:
results
- value to be set- Returns:
- Builder
-
plusResults
ProductSelections matching the query.
- Parameters:
results
- value to be set- Returns:
- Builder
-
plusResults
public ProductSelectionPagedQueryResponseBuilder plusResults(Function<ProductSelectionBuilder, ProductSelectionBuilder> builder) ProductSelections matching the query.
- Parameters:
builder
- function to build the results value- Returns:
- Builder
-
withResults
public ProductSelectionPagedQueryResponseBuilder withResults(Function<ProductSelectionBuilder, ProductSelectionBuilder> builder) ProductSelections matching the query.
- Parameters:
builder
- function to build the results value- Returns:
- Builder
-
addResults
public ProductSelectionPagedQueryResponseBuilder addResults(Function<ProductSelectionBuilder, ProductSelection> builder) ProductSelections matching the query.
- Parameters:
builder
- function to build the results value- Returns:
- Builder
-
setResults
public ProductSelectionPagedQueryResponseBuilder setResults(Function<ProductSelectionBuilder, ProductSelection> builder) ProductSelections 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. Unlike other endpoints, the Product Selection endpoint does not return this field by default. To get
total
, pass the query parameterwithTotal
set totrue
. When the results are filtered with a Query Predicate,total
is subject to a limit.- Returns:
- total
-
getResults
ProductSelections matching the query.
- Returns:
- results
-
build
builds ProductSelectionPagedQueryResponse with checking for non-null required values- Specified by:
build
in interfaceBuilder<ProductSelectionPagedQueryResponse>
- Returns:
- ProductSelectionPagedQueryResponse
-
buildUnchecked
builds ProductSelectionPagedQueryResponse without checking for non-null required values- Returns:
- ProductSelectionPagedQueryResponse
-
of
factory method for an instance of ProductSelectionPagedQueryResponseBuilder- Returns:
- builder
-
of
public static ProductSelectionPagedQueryResponseBuilder of(ProductSelectionPagedQueryResponse template) create builder for ProductSelectionPagedQueryResponse instance- Parameters:
template
- instance with prefilled values for the builder- Returns:
- builder
-