se.l4.silo.search.Facets Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of silo-search-api Show documentation
Show all versions of silo-search-api Show documentation
API for Lucene-based querying for Silo.
package se.l4.silo.search;
import java.util.List;
/**
* Information about facets for a {@link SearchResult}.
*
* @author Andreas Holstenson
*
*/
public interface Facets
{
/**
* Get all {@link FacetEntry entries} for a given facet.
*
* @param id
* @return
*/
List get(String id);
}