Interface FacetRange
- All Known Subinterfaces:
FacetResultRange
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()
-
Method Summary
Modifier and TypeMethodDescriptionstatic FacetRangeBuilder
builder()
builder factory method for FacetRangestatic FacetRangeBuilder
builder
(FacetRange template) create builder for FacetRange instancestatic FacetRange
deepCopy
(FacetRange template) factory method to create a deep copy of FacetRange@NotNull Long
getCount()
Number of ProductVariants for which the values in a field fall into the specified range.@NotNull Double
getFrom()
The range's lower endpoint.@NotNull String
The range's lower endpoint.@NotNull Double
getMax()
Maximum value within the range.@NotNull Double
getMean()
Arithmetic mean of the values within the range.@NotNull Double
getMin()
Minimum value within the range.Number of Products for which the values in a field fall into the specified range.@NotNull Double
getTo()
The range's upper endpoint.@NotNull String
getToStr()
The range's upper endpoint.@NotNull Double
getTotal()
Sum of all values contained in the range.static FacetRange
of()
factory methodstatic FacetRange
of
(FacetRange template) factory method to create a shallow copy FacetRangevoid
Number of ProductVariants for which the values in a field fall into the specified range.void
The range's lower endpoint.void
setFromStr
(String fromStr) The range's lower endpoint.void
Maximum value within the range.void
Arithmetic mean of the values within the range.void
Minimum value within the range.void
setProductCount
(Long productCount) Number of Products for which the values in a field fall into the specified range.void
The range's upper endpoint.void
The range's upper endpoint.void
Sum of all values contained in the range.static com.fasterxml.jackson.core.type.TypeReference<FacetRange>
gives a TypeReference for usage with Jackson DataBinddefault <T> T
withFacetRange
(Function<FacetRange, T> helper) accessor map function
-
Method Details
-
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
Long 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
-
setFrom
The range's lower endpoint.
0
represents -∞.- Parameters:
from
- value to be set
-
setFromStr
The range's lower endpoint.
An empty string represents -∞.
- Parameters:
fromStr
- value to be set
-
setTo
The range's upper endpoint.
0
represents +∞.- Parameters:
to
- value to be set
-
setToStr
The range's upper endpoint.
An empty string represents +∞.
- Parameters:
toStr
- value to be set
-
setCount
Number of ProductVariants for which the values in a field fall into the specified range.
- Parameters:
count
- value to be set
-
setProductCount
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
-
setTotal
Sum of all values contained in the range.
- Parameters:
total
- value to be set
-
setMin
Minimum value within the range.
- Parameters:
min
- value to be set
-
setMax
Maximum value within the range.
- Parameters:
max
- value to be set
-
setMean
Arithmetic mean of the values within the range.
- Parameters:
mean
- value to be set
-
of
factory method- Returns:
- instance of FacetRange
-
of
factory method to create a shallow copy FacetRange- Parameters:
template
- instance to be copied- Returns:
- copy instance
-
deepCopy
factory method to create a deep copy of FacetRange- Parameters:
template
- instance to be copied- Returns:
- copy instance
-
builder
builder factory method for FacetRange- Returns:
- builder
-
builder
create builder for FacetRange instance- Parameters:
template
- instance with prefilled values for the builder- Returns:
- builder
-
withFacetRange
accessor map function- Type Parameters:
T
- mapped type- Parameters:
helper
- function to map the object- Returns:
- mapped value
-
typeReference
gives a TypeReference for usage with Jackson DataBind- Returns:
- TypeReference
-