All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.sphere.client.facets.TermFacet Maven / Gradle / Ivy

There is a newer version: 0.72.1
Show newest version
package io.sphere.client.facets;

import io.sphere.client.model.SearchResult;
import io.sphere.client.model.facets.TermFacetItem;
import io.sphere.client.model.facets.TermFacetResult;

// TODO distinguish:
//   TermFacet extends Facet>.
// Implement for T = {String, Double}
// Now all term facet results are string based.
// (Note: test term number facets with the backend).

/** Term facets component. */
public interface TermFacet extends Facet {
    /** Returns the results for this facet.  */
    public  TermFacetResult getResult(SearchResult searchResult);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy