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> TermFacetedSearchExpression<T> |
TermFacetedSearchExpression.of(TermFacetExpression<T> facetExpression,
List<FilterExpression<T>> filterExpressions) |
Modifier and Type | Method and Description |
---|---|
TermFacetResult |
PagedSearchResult.getFacetResult(TermFacetedSearchExpression<T> facetedSearchExpression)
Obtains the
TermFacetResult of the facet with the given facet search expression. |
Modifier and Type | Method and Description |
---|---|
TermFacetedSearchExpression<T> |
TermFacetedSearchSearchModel.allTerms() |
TermFacetedSearchExpression<T> |
RangeTermFacetedSearchSearchModel.allTerms()
Generates an expression to select all elements, without filtering, along with the facet for all terms for this attribute.
|
TermFacetedSearchExpression<T> |
FacetedSearchSearchModel.allTerms()
Generates an expression to select all elements, without filtering, along with the facet for all terms for this attribute.
|
TermFacetedSearchExpression<T> |
TermFacetedSearchSearchModel.containsAll(Iterable<String> values) |
TermFacetedSearchExpression<T> |
RangeTermFacetedSearchSearchModel.containsAll(Iterable<String> values)
Generates an expression to select all elements with attributes matching all the given values, along with the facet for all terms for this attribute.
|
TermFacetedSearchExpression<T> |
FacetedSearchSearchModel.containsAll(Iterable<String> values)
Generates an expression to select all elements with attributes matching all the given values, along with the facet for all terms for this attribute.
|
TermFacetedSearchExpression<T> |
TermFacetedSearchSearchModel.containsAny(Iterable<String> values) |
TermFacetedSearchExpression<T> |
RangeTermFacetedSearchSearchModel.containsAny(Iterable<String> values)
Generates an expression to select all elements with attributes matching any of the given values, along with the facet for all terms for this attribute.
|
TermFacetedSearchExpression<T> |
FacetedSearchSearchModel.containsAny(Iterable<String> values)
Generates an expression to select all elements with attributes matching any of the given values, along with the facet for all terms for this attribute.
|
TermFacetedSearchExpression<T> |
TermFacetedSearchSearchModel.is(String value) |
TermFacetedSearchExpression<T> |
RangeTermFacetedSearchSearchModel.is(String value)
Generates an expression to select all elements with the given attribute value, along with the facet for all terms for this attribute.
|
TermFacetedSearchExpression<T> |
FacetedSearchSearchModel.is(String value)
Generates an expression to select all elements with the given attribute value, along with the facet for all terms for this attribute.
|
TermFacetedSearchExpression<T> |
RangeTermFacetedSearchSearchModel.isIn(Iterable<String> values)
Generates an expression to select all elements with attributes matching any of the given values, along with the facet for all terms for this attribute.
|
default TermFacetedSearchExpression<T> |
FacetedSearchSearchModel.isIn(Iterable<String> values)
Generates an expression to select all elements with attributes matching any of the given values, along with the facet for all terms for this attribute.
|