Uses of Class
org.apache.lucene.index.BaseTermsEnum
-
Packages that use BaseTermsEnum Package Description org.apache.lucene.codecs.blockterms Pluggable term index / block terms dictionary implementations.org.apache.lucene.codecs.blocktree BlockTree terms dictionary.org.apache.lucene.codecs.blocktreeords Same postings format as Lucene50, except the terms dictionary also supports ords, i.e.org.apache.lucene.codecs.bloom Codec PostingsFormat for fast access to low-frequency terms such as primary key fields.org.apache.lucene.codecs.compressing StoredFieldsFormat that allows cross-document and cross-field compression of stored fields.org.apache.lucene.codecs.idversion A primary-key postings format that associates a version (long) with each term and can provide fail-fast lookups by ID and version.org.apache.lucene.codecs.lucene70 Components from the Lucene 7.0 index format.org.apache.lucene.codecs.lucene80 Components from the Lucene 8.0 index format Seeorg.apache.lucene.codecs.lucene84for an overview of the index format.org.apache.lucene.codecs.memory Term dictionary, DocValues or Postings formats that are read entirely into memory.org.apache.lucene.codecs.simpletext Simpletext Codec: writes human readable postings.org.apache.lucene.codecs.uniformsplit Pluggable term index / block terms dictionary implementations.org.apache.lucene.codecs.uniformsplit.sharedterms Pluggable term index / block terms dictionary implementations.org.apache.lucene.index Code to maintain and access indices.org.apache.lucene.index.memory High-performance single-document main memory Apache Lucene fulltext search index. -
-
Uses of BaseTermsEnum in org.apache.lucene.codecs.blockterms
Subclasses of BaseTermsEnum in org.apache.lucene.codecs.blockterms Modifier and Type Class Description private classBlockTermsReader.FieldReader.SegmentTermsEnum -
Uses of BaseTermsEnum in org.apache.lucene.codecs.blocktree
Subclasses of BaseTermsEnum in org.apache.lucene.codecs.blocktree Modifier and Type Class Description (package private) classIntersectTermsEnumThis is used to implement efficientTerms.intersect(org.apache.lucene.util.automaton.CompiledAutomaton, org.apache.lucene.util.BytesRef)for block-tree.(package private) classSegmentTermsEnumIterates through terms in this field. -
Uses of BaseTermsEnum in org.apache.lucene.codecs.blocktreeords
Subclasses of BaseTermsEnum in org.apache.lucene.codecs.blocktreeords Modifier and Type Class Description (package private) classOrdsIntersectTermsEnumclassOrdsSegmentTermsEnumIterates through terms in this field. -
Uses of BaseTermsEnum in org.apache.lucene.codecs.bloom
Subclasses of BaseTermsEnum in org.apache.lucene.codecs.bloom Modifier and Type Class Description (package private) static classBloomFilteringPostingsFormat.BloomFilteredFieldsProducer.BloomFilteredTermsEnum -
Uses of BaseTermsEnum in org.apache.lucene.codecs.compressing
Subclasses of BaseTermsEnum in org.apache.lucene.codecs.compressing Modifier and Type Class Description private static classCompressingTermVectorsReader.TVTermsEnum -
Uses of BaseTermsEnum in org.apache.lucene.codecs.idversion
Subclasses of BaseTermsEnum in org.apache.lucene.codecs.idversion Modifier and Type Class Description classIDVersionSegmentTermsEnumIterates through terms in this field; this class is public so users can cast it to callIDVersionSegmentTermsEnum.seekExact(BytesRef, long)for optimistic-concurrency, and alsoIDVersionSegmentTermsEnum.getVersion()to get the version of the currently seek'd term. -
Uses of BaseTermsEnum in org.apache.lucene.codecs.lucene70
Subclasses of BaseTermsEnum in org.apache.lucene.codecs.lucene70 Modifier and Type Class Description private static classLucene70DocValuesProducer.TermsDict -
Uses of BaseTermsEnum in org.apache.lucene.codecs.lucene80
Subclasses of BaseTermsEnum in org.apache.lucene.codecs.lucene80 Modifier and Type Class Description private static classLucene80DocValuesProducer.TermsDict -
Uses of BaseTermsEnum in org.apache.lucene.codecs.memory
Subclasses of BaseTermsEnum in org.apache.lucene.codecs.memory Modifier and Type Class Description private classDirectPostingsFormat.DirectField.DirectIntersectTermsEnumprivate classDirectPostingsFormat.DirectField.DirectTermsEnum(package private) classFSTTermsReader.TermsReader.BaseTermsEnumprivate classFSTTermsReader.TermsReader.IntersectTermsEnumprivate classFSTTermsReader.TermsReader.SegmentTermsEnum -
Uses of BaseTermsEnum in org.apache.lucene.codecs.simpletext
Subclasses of BaseTermsEnum in org.apache.lucene.codecs.simpletext Modifier and Type Class Description private classSimpleTextFieldsReader.SimpleTextTermsEnumprivate static classSimpleTextTermVectorsReader.SimpleTVTermsEnum -
Uses of BaseTermsEnum in org.apache.lucene.codecs.uniformsplit
Subclasses of BaseTermsEnum in org.apache.lucene.codecs.uniformsplit Modifier and Type Class Description classBlockReaderSeeks the block corresponding to a given term, read the block bytes, and scans the block terms.classIntersectBlockReaderThe "intersect"TermsEnumresponse toUniformSplitTerms.intersect(CompiledAutomaton, BytesRef), intersecting the terms with an automaton. -
Uses of BaseTermsEnum in org.apache.lucene.codecs.uniformsplit.sharedterms
Subclasses of BaseTermsEnum in org.apache.lucene.codecs.uniformsplit.sharedterms Modifier and Type Class Description classSTBlockReaderReads terms blocks with the Shared Terms format.classSTIntersectBlockReaderThe "intersect"TermsEnumresponse toSTUniformSplitTerms.intersect(CompiledAutomaton, BytesRef), intersecting the terms with an automaton.classSTMergingBlockReader -
Uses of BaseTermsEnum in org.apache.lucene.index
Subclasses of BaseTermsEnum in org.apache.lucene.index Modifier and Type Class Description private static classFreqProxFields.FreqProxTermsEnumclassMultiTermsEnum(package private) classSortedDocValuesTermsEnumImplements aTermsEnumwrapping a providedSortedDocValues.(package private) classSortedSetDocValuesTermsEnumImplements aTermsEnumwrapping a providedSortedSetDocValues. -
Uses of BaseTermsEnum in org.apache.lucene.index.memory
Subclasses of BaseTermsEnum in org.apache.lucene.index.memory Modifier and Type Class Description private classMemoryIndex.MemoryIndexReader.MemoryTermsEnum
-