com.browseengine.bobo.api.ShortFacetIterator 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.api;
/**
* @author "Xiaoyang Gu"
*
*/
public abstract class ShortFacetIterator extends FacetIterator {
public short facet;
public abstract short nextShort();
public abstract short nextShort(int minHits);
public abstract String format(short val);
}