Package | Description |
---|---|
io.sphere.sdk.search.model |
Models to support using search endpoints.
|
Modifier and Type | Method and Description |
---|---|
static <T extends Comparable<? super T>> |
FacetRange.atLeast(T lowerEndpoint)
Creates an interval with all values that are greater than or equal to the given endpoint.
|
static <T extends Comparable<? super T>> |
FacetRange.lessThan(T upperEndpoint)
Creates an interval with all values that are strictly less than the given endpoint.
|
static <T extends Comparable<? super T>> |
FacetRange.of(T lowerEndpoint,
T upperEndpoint)
Creates an interval with the given lower and upper endpoints.
|
Modifier and Type | Method and Description |
---|---|
RangeFacetExpression<T> |
RangeTermFacetSearchModel.onlyRange(FacetRange<V> range)
Generates an expression to obtain the facet of the attribute for only the given range.
|
Modifier and Type | Method and Description |
---|---|
RangeFacetExpression<T> |
RangeTermFacetSearchModel.onlyRange(Iterable<FacetRange<V>> facetRanges)
Generates an expression to obtain the facet of the attribute for only the given ranges.
|