Class StandalonePricePagedQueryResponseBuilder
- All Implemented Interfaces:
Builder<StandalonePricePagedQueryResponse>
Example to create an instance using the builder pattern
StandalonePricePagedQueryResponse standalonePricePagedQueryResponse = StandalonePricePagedQueryResponse.builder()
.limit(0.3)
.offset(0.3)
.count(0.3)
.plusResults(resultsBuilder -> resultsBuilder)
.build()
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionStandalonePrices matching the query.build()
builds StandalonePricePagedQueryResponse with checking for non-null required valuesbuilds StandalonePricePagedQueryResponse without checking for non-null required valuesActual number of results returned.getCount()
Actual number of results returned.getLimit()
Number of requested results.Offset supplied by the client or server default.StandalonePrices matching the query.getTotal()
Total number of results matching the query.Number of requested results.of()
factory method for an instance of StandalonePricePagedQueryResponseBuilderof
(StandalonePricePagedQueryResponse template) create builder for StandalonePricePagedQueryResponse instanceOffset supplied by the client or server default.plusResults
(StandalonePrice... results) StandalonePrices matching the query.StandalonePrices matching the query.results
(StandalonePrice... results) StandalonePrices matching the query.results
(List<StandalonePrice> results) StandalonePrices matching the query.StandalonePrices matching the query.Total number of results matching the query.StandalonePrices matching the query.
-
Constructor Details
-
StandalonePricePagedQueryResponseBuilder
public StandalonePricePagedQueryResponseBuilder()
-
-
Method Details
-
limit
Number of requested results.
- Parameters:
limit
- value to be set- Returns:
- Builder
-
offset
Offset supplied by the client or server default. It is the number of elements skipped, not a page number.
- 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
StandalonePrices matching the query.
- Parameters:
results
- value to be set- Returns:
- Builder
-
results
StandalonePrices matching the query.
- Parameters:
results
- value to be set- Returns:
- Builder
-
plusResults
StandalonePrices matching the query.
- Parameters:
results
- value to be set- Returns:
- Builder
-
plusResults
public StandalonePricePagedQueryResponseBuilder plusResults(Function<StandalonePriceBuilder, StandalonePriceBuilder> builder) StandalonePrices matching the query.
- Parameters:
builder
- function to build the results value- Returns:
- Builder
-
withResults
public StandalonePricePagedQueryResponseBuilder withResults(Function<StandalonePriceBuilder, StandalonePriceBuilder> builder) StandalonePrices matching the query.
- Parameters:
builder
- function to build the results value- Returns:
- Builder
-
addResults
public StandalonePricePagedQueryResponseBuilder addResults(Function<StandalonePriceBuilder, StandalonePrice> builder) StandalonePrices matching the query.
- Parameters:
builder
- function to build the results value- Returns:
- Builder
-
setResults
public StandalonePricePagedQueryResponseBuilder setResults(Function<StandalonePriceBuilder, StandalonePrice> builder) StandalonePrices matching the query.
- Parameters:
builder
- function to build the results value- Returns:
- Builder
-
getLimit
Number of requested results.
- Returns:
- limit
-
getOffset
Offset supplied by the client or server default. It is the number of elements skipped, not a page number.
- 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
StandalonePrices matching the query.
- Returns:
- results
-
build
builds StandalonePricePagedQueryResponse with checking for non-null required values- Specified by:
build
in interfaceBuilder<StandalonePricePagedQueryResponse>
- Returns:
- StandalonePricePagedQueryResponse
-
buildUnchecked
builds StandalonePricePagedQueryResponse without checking for non-null required values- Returns:
- StandalonePricePagedQueryResponse
-
of
factory method for an instance of StandalonePricePagedQueryResponseBuilder- Returns:
- builder
-
of
public static StandalonePricePagedQueryResponseBuilder of(StandalonePricePagedQueryResponse template) create builder for StandalonePricePagedQueryResponse instance- Parameters:
template
- instance with prefilled values for the builder- Returns:
- builder
-