org.apache.lucene.index.AtomicReaderContextUtil 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 org.apache.lucene.index;
public class AtomicReaderContextUtil {
private AtomicReaderContextUtil() {
}
public static AtomicReaderContext updateDocBase(AtomicReaderContext ctx, int docBase) {
return new AtomicReaderContext(null, ctx.reader(), 0, 0, 0, docBase);
}
}