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 |
---|---|
RangeFacetExpression<T> |
RangeFacetedSearchExpression.facetExpression() |
static <T> RangeFacetExpression<T> |
RangeFacetExpression.of(String sphereFacetExpression) |
Modifier and Type | Method and Description |
---|---|
RangeFacetResult |
PagedSearchResult.getFacetResult(RangeFacetExpression<T> facetExpression)
Obtains the
RangeFacetResult of the facet with the given facet expression. |
SimpleRangeStats |
PagedSearchResult.getRangeStatsOfAllRanges(RangeFacetExpression<T> facetExpression)
Obtains the
SimpleRangeStats of the range facet. |
static <T> RangeFacetedSearchExpression<T> |
RangeFacetedSearchExpression.of(RangeFacetExpression<T> facetExpression,
List<FilterExpression<T>> filterExpressions) |
Modifier and Type | Method and Description |
---|---|
RangeFacetExpression<T> |
RangeTermFacetSearchModel.allRanges()
Generates an expression to obtain the facet of the attribute for any range.
|
RangeFacetExpression<T> |
RangeTermFacetSearchModel.onlyGreaterThanOrEqualTo(V value)
Generates an expression to obtain the facet of the attribute for only values greater than or equal to the given value.
|
RangeFacetExpression<T> |
RangeTermFacetSearchModel.onlyLessThan(V value)
Generates an expression to obtain the facet of the attribute for only values less than the given value.
|
RangeFacetExpression<T> |
RangeTermFacetSearchModel.onlyRange(FacetRange<V> range)
Generates an expression to obtain the facet of the attribute for only the given range.
|
RangeFacetExpression<T> |
RangeTermFacetSearchModel.onlyRange(Iterable<FacetRange<V>> facetRanges)
Generates an expression to obtain the facet of the attribute for only the given ranges.
|
RangeFacetExpression<T> |
RangeTermFacetSearchModel.onlyRange(V lowerEndpoint,
V upperEndpoint)
Generates an expression to obtain the facet of the attribute for only the given range.
|