![JAR search and dependency download from the Maven repository](/logo.png)
se.l4.silo.search.facet.SimpleFacetQuery 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.
The newest version!
package se.l4.silo.search.facet;
/**
* Simple parameters needed by certain facets.
*
* @author Andreas Holstenson
*
*/
public class SimpleFacetQuery
{
private final int count;
public SimpleFacetQuery(int count)
{
this.count = count > 0 ? count : 10;
}
/**
* Get maximum number of facets to return.
*
* @return
*/
public int getCount()
{
return count;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy