Example usage for org.apache.lucene.index FilteredTermsEnum subclass-usage

List of usage examples for org.apache.lucene.index FilteredTermsEnum subclass-usage

Introduction

In this page you can find the example usage for org.apache.lucene.index FilteredTermsEnum subclass-usage.

Usage

From source file br.ufmt.periscope.indexer.resources.search.FastJoinTermEnum.java

/**
 *
 * @author mattyws
 */
public class FastJoinTermEnum extends FilteredTermsEnum {

From source file io.crate.lucene.match.CrateRegexTermsEnum.java

/**
 * Subclass of FilteredTermEnum for enumerating all terms that match the
 * specified regular expression term using the specified regular expression
 * implementation.
 * <p>
 * Term enumerations are always ordered by Term.compareTo().  Each term in

From source file org.elasticsearch.index.fielddata.plain.ParentChildFilteredTermsEnum.java

/**
 * Only emits terms that exist in the parentTypes set.
 *
 * @elasticsearch.internal
 */
final class ParentChildFilteredTermsEnum extends FilteredTermsEnum {

From source file org.elasticsearch.index.fielddata.RamAccountingTermsEnum.java

/**
 * {@link TermsEnum} that takes a MemoryCircuitBreaker, increasing the breaker
 * every time {@code .next(...)} is called. Proxies all methods to the original
 * TermsEnum otherwise.
 */
public final class RamAccountingTermsEnum extends FilteredTermsEnum {