Class VariantPagedQueryResponseBuilder
- All Implemented Interfaces:
Builder<VariantPagedQueryResponse>
Example to create an instance using the builder pattern
VariantPagedQueryResponse variantPagedQueryResponse = VariantPagedQueryResponse.builder()
.limit(0.3)
.offset(0.3)
.count(0.3)
.plusResults(resultsBuilder -> resultsBuilder)
.build()
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionaddResults(Function<VariantBuilder, Variant> builder) Variants matching the query.build()builds VariantPagedQueryResponse with checking for non-null required valuesbuilds VariantPagedQueryResponse 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.Variants matching the query.getTotal()Total number of results matching the query.Number of results requested.of()factory method for an instance of VariantPagedQueryResponseBuilderof(VariantPagedQueryResponse template) create builder for VariantPagedQueryResponse instanceNumber of elements skipped.plusResults(Variant... results) Variants matching the query.plusResults(Function<VariantBuilder, VariantBuilder> builder) Variants matching the query.Variants matching the query.Variants matching the query.setResults(Function<VariantBuilder, Variant> builder) Variants matching the query.Total number of results matching the query.withResults(Function<VariantBuilder, VariantBuilder> builder) Variants matching the query.
-
Constructor Details
-
VariantPagedQueryResponseBuilder
public VariantPagedQueryResponseBuilder()
-
-
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. Unless absolutely necessary, use the query parameter
withTotal=falseto improve performance by deactivating the calculation of this field. When the results are filtered with a Query Predicate,totalis subject to a limit.- Parameters:
total- value to be set- Returns:
- Builder
-
results
Variants matching the query.
- Parameters:
results- value to be set- Returns:
- Builder
-
results
Variants matching the query.
- Parameters:
results- value to be set- Returns:
- Builder
-
plusResults
Variants matching the query.
- Parameters:
results- value to be set- Returns:
- Builder
-
plusResults
public VariantPagedQueryResponseBuilder plusResults(Function<VariantBuilder, VariantBuilder> builder) Variants matching the query.
- Parameters:
builder- function to build the results value- Returns:
- Builder
-
withResults
public VariantPagedQueryResponseBuilder withResults(Function<VariantBuilder, VariantBuilder> builder) Variants matching the query.
- Parameters:
builder- function to build the results value- Returns:
- Builder
-
addResults
Variants matching the query.
- Parameters:
builder- function to build the results value- Returns:
- Builder
-
setResults
Variants 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. Unless absolutely necessary, use the query parameter
withTotal=falseto improve performance by deactivating the calculation of this field. When the results are filtered with a Query Predicate,totalis subject to a limit.- Returns:
- total
-
getResults
Variants matching the query.
- Returns:
- results
-
build
builds VariantPagedQueryResponse with checking for non-null required values- Specified by:
buildin interfaceBuilder<VariantPagedQueryResponse>- Returns:
- VariantPagedQueryResponse
-
buildUnchecked
builds VariantPagedQueryResponse without checking for non-null required values- Returns:
- VariantPagedQueryResponse
-
of
factory method for an instance of VariantPagedQueryResponseBuilder- Returns:
- builder
-
of
create builder for VariantPagedQueryResponse instance- Parameters:
template- instance with prefilled values for the builder- Returns:
- builder
-