com.browseengine.bobo.facets.impl.GroupByFacetCountCollector Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bobo-browse Show documentation
Show all versions of bobo-browse Show documentation
Bobo is a Faceted Search implementation written purely in Java, an extension of Apache Lucene
The newest version!
package com.browseengine.bobo.facets.impl;
import com.browseengine.bobo.api.BrowseSelection;
import com.browseengine.bobo.api.FacetSpec;
import com.browseengine.bobo.facets.data.FacetDataCache;
public abstract class GroupByFacetCountCollector extends DefaultFacetCountCollector {
public GroupByFacetCountCollector(String name, FacetDataCache> dataCache, int docBase,
BrowseSelection sel, FacetSpec ospec) {
super(name, dataCache, docBase, sel, ospec);
}
abstract public int getTotalGroups();
}