Class TermFacetResultBuilder
- All Implemented Interfaces:
Builder<TermFacetResult>
Example to create an instance using the builder pattern
TermFacetResult termFacetResult = TermFacetResult.builder()
.dataType(TermFacetResultType.TEXT)
.missing(0.3)
.total(0.3)
.other(0.3)
.plusTerms(termsBuilder -> termsBuilder)
.build()
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionaddTerms
(Function<FacetTermBuilder, FacetTerm> builder) Values for the field specified in term facet expression for which at least one ProductVariant could be found.build()
builds TermFacetResult with checking for non-null required valuesbuilds TermFacetResult without checking for non-null required valuesdataType
(TermFacetResultType dataType) Data type to which the facet is applied.Data type to which the facet is applied.Number of ProductVariants that have no value for the specified term facet expression.getOther()
Number of terms not represented in this object (such as the number of terms beyond the limit).getTerms()
Values for the field specified in term facet expression for which at least one ProductVariant could be found.getTotal()
Number of terms matching the term facet expression.Number of ProductVariants that have no value for the specified term facet expression.static TermFacetResultBuilder
of()
factory method for an instance of TermFacetResultBuilderstatic TermFacetResultBuilder
of
(TermFacetResult template) create builder for TermFacetResult instanceNumber of terms not represented in this object (such as the number of terms beyond the limit).Values for the field specified in term facet expression for which at least one ProductVariant could be found.plusTerms
(Function<FacetTermBuilder, FacetTermBuilder> builder) Values for the field specified in term facet expression for which at least one ProductVariant could be found.setTerms
(Function<FacetTermBuilder, FacetTerm> builder) Values for the field specified in term facet expression for which at least one ProductVariant could be found.Values for the field specified in term facet expression for which at least one ProductVariant could be found.Values for the field specified in term facet expression for which at least one ProductVariant could be found.Number of terms matching the term facet expression.withTerms
(Function<FacetTermBuilder, FacetTermBuilder> builder) Values for the field specified in term facet expression for which at least one ProductVariant could be found.
-
Constructor Details
-
TermFacetResultBuilder
public TermFacetResultBuilder()
-
-
Method Details
-
dataType
Data type to which the facet is applied.
- Parameters:
dataType
- value to be set- Returns:
- Builder
-
missing
Number of ProductVariants that have no value for the specified term facet expression.
- Parameters:
missing
- value to be set- Returns:
- Builder
-
total
Number of terms matching the term facet expression.
- If the expression refers to Product fields like
categories.id
andreviewRatingStatistics.count
, the value represents the number of Products. - If the expression is defined for fields specific to Product Variants, for example,
variants.attributes.{name}
, the value represents the number of Product Variants matching the expression.
- Parameters:
total
- value to be set- Returns:
- Builder
- If the expression refers to Product fields like
-
other
Number of terms not represented in this object (such as the number of terms beyond the limit).
- Parameters:
other
- value to be set- Returns:
- Builder
-
terms
Values for the field specified in term facet expression for which at least one ProductVariant could be found.
By default, facet terms are returned in a descending order of their
count
.If the term facet expression specifies to count Products through the
counting products
extension, then facet terms are returned in a descending order of theirproductCount
.- Parameters:
terms
- value to be set- Returns:
- Builder
-
terms
Values for the field specified in term facet expression for which at least one ProductVariant could be found.
By default, facet terms are returned in a descending order of their
count
.If the term facet expression specifies to count Products through the
counting products
extension, then facet terms are returned in a descending order of theirproductCount
.- Parameters:
terms
- value to be set- Returns:
- Builder
-
plusTerms
Values for the field specified in term facet expression for which at least one ProductVariant could be found.
By default, facet terms are returned in a descending order of their
count
.If the term facet expression specifies to count Products through the
counting products
extension, then facet terms are returned in a descending order of theirproductCount
.- Parameters:
terms
- value to be set- Returns:
- Builder
-
plusTerms
Values for the field specified in term facet expression for which at least one ProductVariant could be found.
By default, facet terms are returned in a descending order of their
count
.If the term facet expression specifies to count Products through the
counting products
extension, then facet terms are returned in a descending order of theirproductCount
.- Parameters:
builder
- function to build the terms value- Returns:
- Builder
-
withTerms
Values for the field specified in term facet expression for which at least one ProductVariant could be found.
By default, facet terms are returned in a descending order of their
count
.If the term facet expression specifies to count Products through the
counting products
extension, then facet terms are returned in a descending order of theirproductCount
.- Parameters:
builder
- function to build the terms value- Returns:
- Builder
-
addTerms
Values for the field specified in term facet expression for which at least one ProductVariant could be found.
By default, facet terms are returned in a descending order of their
count
.If the term facet expression specifies to count Products through the
counting products
extension, then facet terms are returned in a descending order of theirproductCount
.- Parameters:
builder
- function to build the terms value- Returns:
- Builder
-
setTerms
Values for the field specified in term facet expression for which at least one ProductVariant could be found.
By default, facet terms are returned in a descending order of their
count
.If the term facet expression specifies to count Products through the
counting products
extension, then facet terms are returned in a descending order of theirproductCount
.- Parameters:
builder
- function to build the terms value- Returns:
- Builder
-
getDataType
Data type to which the facet is applied.
- Returns:
- dataType
-
getMissing
Number of ProductVariants that have no value for the specified term facet expression.
- Returns:
- missing
-
getTotal
Number of terms matching the term facet expression.
- If the expression refers to Product fields like
categories.id
andreviewRatingStatistics.count
, the value represents the number of Products. - If the expression is defined for fields specific to Product Variants, for example,
variants.attributes.{name}
, the value represents the number of Product Variants matching the expression.
- Returns:
- total
- If the expression refers to Product fields like
-
getOther
Number of terms not represented in this object (such as the number of terms beyond the limit).
- Returns:
- other
-
getTerms
Values for the field specified in term facet expression for which at least one ProductVariant could be found.
By default, facet terms are returned in a descending order of their
count
.If the term facet expression specifies to count Products through the
counting products
extension, then facet terms are returned in a descending order of theirproductCount
.- Returns:
- terms
-
build
builds TermFacetResult with checking for non-null required values- Specified by:
build
in interfaceBuilder<TermFacetResult>
- Returns:
- TermFacetResult
-
buildUnchecked
builds TermFacetResult without checking for non-null required values- Returns:
- TermFacetResult
-
of
factory method for an instance of TermFacetResultBuilder- Returns:
- builder
-
of
create builder for TermFacetResult instance- Parameters:
template
- instance with prefilled values for the builder- Returns:
- builder
-