Class PaymentPagedQueryResponseBuilder
- All Implemented Interfaces:
Builder<PaymentPagedQueryResponse>
Example to create an instance using the builder pattern
PaymentPagedQueryResponse paymentPagedQueryResponse = PaymentPagedQueryResponse.builder()
.limit(0.3)
.count(0.3)
.offset(0.3)
.plusResults(resultsBuilder -> resultsBuilder)
.build()
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionaddResults
(Function<PaymentBuilder, Payment> builder) Payments matching the query.build()
builds PaymentPagedQueryResponse with checking for non-null required valuesbuilds PaymentPagedQueryResponse 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.Payments matching the query.getTotal()
Total number of results matching the query.Number of results requested.of()
factory method for an instance of PaymentPagedQueryResponseBuilderof
(PaymentPagedQueryResponse template) create builder for PaymentPagedQueryResponse instanceNumber of elements skipped.plusResults
(Payment... results) Payments matching the query.plusResults
(Function<PaymentBuilder, PaymentBuilder> builder) Payments matching the query.Payments matching the query.Payments matching the query.setResults
(Function<PaymentBuilder, Payment> builder) Payments matching the query.Total number of results matching the query.withResults
(Function<PaymentBuilder, PaymentBuilder> builder) Payments matching the query.
-
Constructor Details
-
PaymentPagedQueryResponseBuilder
public PaymentPagedQueryResponseBuilder()
-
-
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
Payments matching the query.
- Parameters:
results
- value to be set- Returns:
- Builder
-
results
Payments matching the query.
- Parameters:
results
- value to be set- Returns:
- Builder
-
plusResults
Payments matching the query.
- Parameters:
results
- value to be set- Returns:
- Builder
-
plusResults
public PaymentPagedQueryResponseBuilder plusResults(Function<PaymentBuilder, PaymentBuilder> builder) Payments matching the query.
- Parameters:
builder
- function to build the results value- Returns:
- Builder
-
withResults
public PaymentPagedQueryResponseBuilder withResults(Function<PaymentBuilder, PaymentBuilder> builder) Payments matching the query.
- Parameters:
builder
- function to build the results value- Returns:
- Builder
-
addResults
Payments matching the query.
- Parameters:
builder
- function to build the results value- Returns:
- Builder
-
setResults
Payments 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
Payments matching the query.
- Returns:
- results
-
build
builds PaymentPagedQueryResponse with checking for non-null required values- Specified by:
build
in interfaceBuilder<PaymentPagedQueryResponse>
- Returns:
- PaymentPagedQueryResponse
-
buildUnchecked
builds PaymentPagedQueryResponse without checking for non-null required values- Returns:
- PaymentPagedQueryResponse
-
of
factory method for an instance of PaymentPagedQueryResponseBuilder- Returns:
- builder
-
of
create builder for PaymentPagedQueryResponse instance- Parameters:
template
- instance with prefilled values for the builder- Returns:
- builder
-