Package | Description |
---|---|
io.sphere.sdk.search |
Provides types to perform searches.
|
io.sphere.sdk.search.model |
Models to support using search endpoints.
|
Modifier and Type | Method and Description |
---|---|
static <T> RangeFacetedSearchExpression<T> |
RangeFacetedSearchExpression.of(RangeFacetExpression<T> facetExpression,
List<FilterExpression<T>> filterExpressions) |
Modifier and Type | Method and Description |
---|---|
RangeFacetResult |
PagedSearchResult.getFacetResult(RangeFacetedSearchExpression<T> facetedSearchExpression)
Obtains the
RangeFacetResult of the facet with the given facet search expression. |
SimpleRangeStats |
PagedSearchResult.getRangeStatsOfAllRanges(RangeFacetedSearchExpression<T> facetedSearchExpression)
Obtains the
SimpleRangeStats of the range facet. |
Modifier and Type | Method and Description |
---|---|
RangeFacetedSearchExpression<T> |
RangeTermFacetedSearchSearchModel.allRanges()
Generates an expression to select all elements, without filtering, along with the facet for all terms for this attribute.
|
RangeFacetedSearchExpression<T> |
RangeTermFacetedSearchSearchModel.isBetween(FilterRange<String> range)
Generates an expression to select all elements with an attribute value within the given range, along with the facet for all ranges for this attribute.
|
RangeFacetedSearchExpression<T> |
RangeTermFacetedSearchSearchModel.isBetweenAll(Iterable<FilterRange<String>> ranges)
Generates an expression to select all elements with an attribute value within all the given ranges, along with the facet for all ranges for this attribute.
|
RangeFacetedSearchExpression<T> |
RangeTermFacetedSearchSearchModel.isBetweenAny(Iterable<FilterRange<String>> ranges)
Generates an expression to select all elements with an attribute value within any of the given ranges, along with the facet for all ranges for this attribute.
|