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