Class FacetRangeBuilder
- All Implemented Interfaces:
Builder<FacetRange>
- Direct Known Subclasses:
FacetResultRangeBuilder
Example to create an instance using the builder pattern
FacetRange facetRange = FacetRange.builder()
.from(0.3)
.fromStr("{fromStr}")
.to(0.3)
.toStr("{toStr}")
.count(0.3)
.total(0.3)
.min(0.3)
.max(0.3)
.mean(0.3)
.build()
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionbuild()
builds FacetRange with checking for non-null required valuesbuilds FacetRange without checking for non-null required valuesNumber of ProductVariants for which the values in a field fall into the specified range.The range's lower endpoint.The range's lower endpoint.getCount()
Number of ProductVariants for which the values in a field fall into the specified range.getFrom()
The range's lower endpoint.The range's lower endpoint.getMax()
Maximum value within the range.getMean()
Arithmetic mean of the values within the range.getMin()
Minimum value within the range.Number of Products for which the values in a field fall into the specified range.getTo()
The range's upper endpoint.getToStr()
The range's upper endpoint.getTotal()
Sum of all values contained in the range.Maximum value within the range.Arithmetic mean of the values within the range.Minimum value within the range.static FacetRangeBuilder
of()
factory method for an instance of FacetRangeBuilderstatic FacetRangeBuilder
of
(FacetRange template) create builder for FacetRange instanceproductCount
(Long productCount) Number of Products for which the values in a field fall into the specified range.The range's upper endpoint.The range's upper endpoint.Sum of all values contained in the range.
-
Constructor Details
-
FacetRangeBuilder
public FacetRangeBuilder()
-
-
Method Details
-
from
The range's lower endpoint.
0
represents -∞.- Parameters:
from
- value to be set- Returns:
- Builder
-
fromStr
The range's lower endpoint.
An empty string represents -∞.
- Parameters:
fromStr
- value to be set- Returns:
- Builder
-
to
The range's upper endpoint.
0
represents +∞.- Parameters:
to
- value to be set- Returns:
- Builder
-
toStr
The range's upper endpoint.
An empty string represents +∞.
- Parameters:
toStr
- value to be set- Returns:
- Builder
-
count
Number of ProductVariants for which the values in a field fall into the specified range.
- Parameters:
count
- value to be set- Returns:
- Builder
-
productCount
Number of Products for which the values in a field fall into the specified range.
Present only if the
counting products
extension is enabled.- Parameters:
productCount
- value to be set- Returns:
- Builder
-
total
Sum of all values contained in the range.
- Parameters:
total
- value to be set- Returns:
- Builder
-
min
Minimum value within the range.
- Parameters:
min
- value to be set- Returns:
- Builder
-
max
Maximum value within the range.
- Parameters:
max
- value to be set- Returns:
- Builder
-
mean
Arithmetic mean of the values within the range.
- Parameters:
mean
- value to be set- Returns:
- Builder
-
getFrom
The range's lower endpoint.
0
represents -∞.- Returns:
- from
-
getFromStr
The range's lower endpoint.
An empty string represents -∞.
- Returns:
- fromStr
-
getTo
The range's upper endpoint.
0
represents +∞.- Returns:
- to
-
getToStr
The range's upper endpoint.
An empty string represents +∞.
- Returns:
- toStr
-
getCount
Number of ProductVariants for which the values in a field fall into the specified range.
- Returns:
- count
-
getProductCount
Number of Products for which the values in a field fall into the specified range.
Present only if the
counting products
extension is enabled.- Returns:
- productCount
-
getTotal
Sum of all values contained in the range.
- Returns:
- total
-
getMin
Minimum value within the range.
- Returns:
- min
-
getMax
Maximum value within the range.
- Returns:
- max
-
getMean
Arithmetic mean of the values within the range.
- Returns:
- mean
-
build
builds FacetRange with checking for non-null required values- Specified by:
build
in interfaceBuilder<FacetRange>
- Returns:
- FacetRange
-
buildUnchecked
builds FacetRange without checking for non-null required values- Returns:
- FacetRange
-
of
factory method for an instance of FacetRangeBuilder- Returns:
- builder
-
of
create builder for FacetRange instance- Parameters:
template
- instance with prefilled values for the builder- Returns:
- builder
-