All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.lucene.index.AtomicReaderContextUtil Maven / Gradle / Ivy

Go to download

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);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy