com.browseengine.bobo.search.section.SectionSearchQueryPlan 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.search.section;
import java.io.IOException;
import org.apache.lucene.search.DocIdSetIterator;
import org.apache.lucene.util.PriorityQueue;
/**
* This class represents a section search query plan
*
*/
public abstract class SectionSearchQueryPlan {
public static final int NO_MORE_POSITIONS = Integer.MAX_VALUE;
public static final int NO_MORE_SECTIONS = Integer.MAX_VALUE;
protected int _curDoc;
protected int _curSec;
/*
* Priority queue of Nodes.
*/
static public class NodeQueue extends PriorityQueue