io.sphere.sdk.search.TermFacetExpression Maven / Gradle / Ivy
package io.sphere.sdk.search;
/**
* Term facets calculate statistical counts for all values of an attribute.
* Example: variants.attributes.color
* @param Type of the resource for the facet
*/
public interface TermFacetExpression extends FacetExpression {
static TermFacetExpression of(final String sphereFacetExpression) {
return new SimpleTermFacetExpression<>(sphereFacetExpression);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy