List of usage examples for org.apache.lucene.index TermsEnum subclass-usage
From source file com.rocana.lucene.codec.v1.RocanaIntersectTermsEnum.java
/**
* Fork of Lucene's {@link org.apache.lucene.codecs.blocktree.IntersectTermsEnum}
* from Lucene's git repository, tag: releases/lucene-solr/5.5.0
*
* Why we forked:
* - To use other forked classes, like {@link RocanaFieldReader}.
From source file com.rocana.lucene.codec.v1.RocanaSegmentTermsEnum.java
/**
* Fork of Lucene's {@link org.apache.lucene.codecs.blocktree.SegmentTermsEnum}
* from Lucene's git repository, tag: releases/lucene-solr/5.5.0
*
* Why we forked:
* - To use the other forked classes, like {@link RocanaFieldReader}.
From source file org.buzzinate.lezhi.query.LezhiTermsEnum.java
/**
* Abstract class for enumerating a subset of all terms.
*
* <p>Term enumerations are always ordered by
* {@link #getComparator}. Each term in the enumeration is
* greater than all that precede it.</p>
From source file org.codelibs.elasticsearch.common.lucene.index.FilterableTermsEnum.java
/** * A frequency TermsEnum that returns frequencies derived from a collection of * cached leaf termEnums. It also allows to provide a filter to explicitly * compute frequencies only for docs that match the filter (heavier!). */ public class FilterableTermsEnum extends TermsEnum {
From source file org.elasticsearch.common.lucene.index.FilterableTermsEnum.java
/** * A frequency TermsEnum that returns frequencies derived from a collection of * cached leaf termEnums. It also allows to provide a filter to explicitly * compute frequencies only for docs that match the filter (heavier!). */ public class FilterableTermsEnum extends TermsEnum {
From source file org.elasticsearch.index.fielddata.plain.AtomicFieldDataWithOrdinalsTermsEnum.java
/** * A general {@link org.apache.lucene.index.TermsEnum} to iterate over terms from a {@link AtomicFieldData.WithOrdinals} * instance. */ public class AtomicFieldDataWithOrdinalsTermsEnum extends TermsEnum {
From source file org.elasticsearch.index.fielddata.plain.BytesValuesWithOrdinalsTermsEnum.java
/** * A general {@link org.apache.lucene.index.TermsEnum} to iterate over terms from a {@link AtomicFieldData.WithOrdinals} * instance. */ public class BytesValuesWithOrdinalsTermsEnum extends TermsEnum {
From source file org.elasticsearch.index.fielddata.plain.ParentChildIntersectTermsEnum.java
/** * Intersects the terms and unions the doc ids for terms enum of multiple fields. * * @elasticsearch.internal */ final class ParentChildIntersectTermsEnum extends TermsEnum {
From source file org.tallison.lucene.sandbox.queries.SlowFuzzyTermsEnum.java
/**
* <p>This is a copy paste from Lucene 6.x branch with some
* more copy paste from FuzzyTermsEnum...Ugh...Let's put this back in trunk, please!
* </p>
* Potentially slow fuzzy TermsEnum for enumerating all terms that are similar
* to the specified filter term.