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