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