Class CartPagedQueryResponseBuilder
- All Implemented Interfaces:
io.vrap.rmf.base.client.Builder<CartPagedQueryResponse>
Example to create an instance using the builder pattern
CartPagedQueryResponse cartPagedQueryResponse = CartPagedQueryResponse.builder()
.limit(0.3)
.offset(0.3)
.count(0.3)
.plusResults(resultsBuilder -> resultsBuilder)
.build()
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionaddResults
(Function<CartBuilder, Cart> builder) Carts matching the query.build()
builds CartPagedQueryResponse with checking for non-null required valuesbuilds CartPagedQueryResponse 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.Carts matching the query.getTotal()
Total number of results matching the query.Number of results requested.of()
factory method for an instance of CartPagedQueryResponseBuilderof
(CartPagedQueryResponse template) create builder for CartPagedQueryResponse instanceNumber of elements skipped.plusResults
(Cart... results) Carts matching the query.plusResults
(Function<CartBuilder, CartBuilder> builder) Carts matching the query.Carts matching the query.Carts matching the query.setResults
(Function<CartBuilder, Cart> builder) Carts matching the query.Total number of results matching the query.withResults
(Function<CartBuilder, CartBuilder> builder) Carts matching the query.
-
Constructor Details
-
CartPagedQueryResponseBuilder
public CartPagedQueryResponseBuilder()
-
-
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
Carts matching the query.
- Parameters:
results
- value to be set- Returns:
- Builder
-
results
Carts matching the query.
- Parameters:
results
- value to be set- Returns:
- Builder
-
plusResults
Carts matching the query.
- Parameters:
results
- value to be set- Returns:
- Builder
-
plusResults
Carts matching the query.
- Parameters:
builder
- function to build the results value- Returns:
- Builder
-
withResults
Carts matching the query.
- Parameters:
builder
- function to build the results value- Returns:
- Builder
-
addResults
Carts matching the query.
- Parameters:
builder
- function to build the results value- Returns:
- Builder
-
setResults
Carts 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
Carts matching the query.
- Returns:
- results
-
build
builds CartPagedQueryResponse with checking for non-null required values- Specified by:
build
in interfaceio.vrap.rmf.base.client.Builder<CartPagedQueryResponse>
- Returns:
- CartPagedQueryResponse
-
buildUnchecked
builds CartPagedQueryResponse without checking for non-null required values- Returns:
- CartPagedQueryResponse
-
of
factory method for an instance of CartPagedQueryResponseBuilder- Returns:
- builder
-
of
create builder for CartPagedQueryResponse instance- Parameters:
template
- instance with prefilled values for the builder- Returns:
- builder
-