Uses of Class
org.apache.lucene.index.PostingsEnum
-
Packages that use PostingsEnum Package Description org.apache.lucene.codecs Codecs API: API for customization of the encoding and structure of the index.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.lucene50 Components from the Lucene 5.0 index format Seeorg.apache.lucene.codecs.lucene80for an overview of the index format.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.lucene84 Components from the Lucene 8.4 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.document The logical representation of aDocumentfor indexing and searching.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.org.apache.lucene.payloads Experimental classes for interacting with payloadsorg.apache.lucene.queries.payloads The payloads package provides Query mechanisms for finding and using payloads.org.apache.lucene.search Code to search indices.org.apache.lucene.search.spans The calculus of spans.org.apache.lucene.search.suggest.document Support for document suggestionorg.apache.lucene.search.uhighlight The UnifiedHighlighter -- a flexible highlighter that can get offsets from postings, term vectors, or analysis. -
-
Uses of PostingsEnum in org.apache.lucene.codecs
Fields in org.apache.lucene.codecs declared as PostingsEnum Modifier and Type Field Description private PostingsEnumPushPostingsWriterBase. postingsEnumMethods in org.apache.lucene.codecs that return PostingsEnum Modifier and Type Method Description PostingsEnumDocValuesConsumer.MergedTermsEnum. postings(PostingsEnum reuse, int flags)abstract PostingsEnumPostingsReaderBase. postings(FieldInfo fieldInfo, BlockTermState state, PostingsEnum reuse, int flags)Must fully consume state, since after this call that TermState may be reused.Methods in org.apache.lucene.codecs with parameters of type PostingsEnum Modifier and Type Method Description PostingsEnumDocValuesConsumer.MergedTermsEnum. postings(PostingsEnum reuse, int flags)abstract PostingsEnumPostingsReaderBase. postings(FieldInfo fieldInfo, BlockTermState state, PostingsEnum reuse, int flags)Must fully consume state, since after this call that TermState may be reused. -
Uses of PostingsEnum in org.apache.lucene.codecs.blockterms
Methods in org.apache.lucene.codecs.blockterms that return PostingsEnum Modifier and Type Method Description PostingsEnumBlockTermsReader.FieldReader.SegmentTermsEnum. postings(PostingsEnum reuse, int flags)Methods in org.apache.lucene.codecs.blockterms with parameters of type PostingsEnum Modifier and Type Method Description PostingsEnumBlockTermsReader.FieldReader.SegmentTermsEnum. postings(PostingsEnum reuse, int flags) -
Uses of PostingsEnum in org.apache.lucene.codecs.blocktree
Methods in org.apache.lucene.codecs.blocktree that return PostingsEnum Modifier and Type Method Description PostingsEnumIntersectTermsEnum. postings(PostingsEnum reuse, int flags)PostingsEnumSegmentTermsEnum. postings(PostingsEnum reuse, int flags)Methods in org.apache.lucene.codecs.blocktree with parameters of type PostingsEnum Modifier and Type Method Description PostingsEnumIntersectTermsEnum. postings(PostingsEnum reuse, int flags)PostingsEnumSegmentTermsEnum. postings(PostingsEnum reuse, int flags) -
Uses of PostingsEnum in org.apache.lucene.codecs.blocktreeords
Methods in org.apache.lucene.codecs.blocktreeords that return PostingsEnum Modifier and Type Method Description PostingsEnumOrdsIntersectTermsEnum. postings(PostingsEnum reuse, int flags)PostingsEnumOrdsSegmentTermsEnum. postings(PostingsEnum reuse, int flags)Methods in org.apache.lucene.codecs.blocktreeords with parameters of type PostingsEnum Modifier and Type Method Description PostingsEnumOrdsIntersectTermsEnum. postings(PostingsEnum reuse, int flags)PostingsEnumOrdsSegmentTermsEnum. postings(PostingsEnum reuse, int flags) -
Uses of PostingsEnum in org.apache.lucene.codecs.bloom
Methods in org.apache.lucene.codecs.bloom that return PostingsEnum Modifier and Type Method Description PostingsEnumBloomFilteringPostingsFormat.BloomFilteredFieldsProducer.BloomFilteredTermsEnum. postings(PostingsEnum reuse, int flags)Methods in org.apache.lucene.codecs.bloom with parameters of type PostingsEnum Modifier and Type Method Description PostingsEnumBloomFilteringPostingsFormat.BloomFilteredFieldsProducer.BloomFilteredTermsEnum. postings(PostingsEnum reuse, int flags) -
Uses of PostingsEnum in org.apache.lucene.codecs.compressing
Subclasses of PostingsEnum in org.apache.lucene.codecs.compressing Modifier and Type Class Description private static classCompressingTermVectorsReader.TVPostingsEnumMethods in org.apache.lucene.codecs.compressing that return PostingsEnum Modifier and Type Method Description PostingsEnumCompressingTermVectorsReader.TVTermsEnum. postings(PostingsEnum reuse, int flags)Methods in org.apache.lucene.codecs.compressing with parameters of type PostingsEnum Modifier and Type Method Description PostingsEnumCompressingTermVectorsReader.TVTermsEnum. postings(PostingsEnum reuse, int flags) -
Uses of PostingsEnum in org.apache.lucene.codecs.idversion
Subclasses of PostingsEnum in org.apache.lucene.codecs.idversion Modifier and Type Class Description (package private) classSingleDocsEnum(package private) classSinglePostingsEnumMethods in org.apache.lucene.codecs.idversion that return PostingsEnum Modifier and Type Method Description PostingsEnumIDVersionPostingsReader. postings(FieldInfo fieldInfo, BlockTermState termState, PostingsEnum reuse, int flags)PostingsEnumIDVersionSegmentTermsEnum. postings(PostingsEnum reuse, int flags)Methods in org.apache.lucene.codecs.idversion with parameters of type PostingsEnum Modifier and Type Method Description PostingsEnumIDVersionPostingsReader. postings(FieldInfo fieldInfo, BlockTermState termState, PostingsEnum reuse, int flags)PostingsEnumIDVersionSegmentTermsEnum. postings(PostingsEnum reuse, int flags) -
Uses of PostingsEnum in org.apache.lucene.codecs.lucene50
Subclasses of PostingsEnum in org.apache.lucene.codecs.lucene50 Modifier and Type Class Description (package private) classLucene50PostingsReader.BlockDocsEnum(package private) classLucene50PostingsReader.BlockImpactsEverythingEnum(package private) classLucene50PostingsReader.BlockImpactsPostingsEnum(package private) classLucene50PostingsReader.EverythingEnumMethods in org.apache.lucene.codecs.lucene50 that return PostingsEnum Modifier and Type Method Description PostingsEnumLucene50PostingsReader. postings(FieldInfo fieldInfo, BlockTermState termState, PostingsEnum reuse, int flags)PostingsEnumLucene50PostingsReader.BlockDocsEnum. reset(Lucene50PostingsFormat.IntBlockTermState termState, int flags)Methods in org.apache.lucene.codecs.lucene50 with parameters of type PostingsEnum Modifier and Type Method Description PostingsEnumLucene50PostingsReader. postings(FieldInfo fieldInfo, BlockTermState termState, PostingsEnum reuse, int flags) -
Uses of PostingsEnum in org.apache.lucene.codecs.lucene70
Methods in org.apache.lucene.codecs.lucene70 that return PostingsEnum Modifier and Type Method Description PostingsEnumLucene70DocValuesProducer.TermsDict. postings(PostingsEnum reuse, int flags)Methods in org.apache.lucene.codecs.lucene70 with parameters of type PostingsEnum Modifier and Type Method Description PostingsEnumLucene70DocValuesProducer.TermsDict. postings(PostingsEnum reuse, int flags) -
Uses of PostingsEnum in org.apache.lucene.codecs.lucene80
Methods in org.apache.lucene.codecs.lucene80 that return PostingsEnum Modifier and Type Method Description PostingsEnumLucene80DocValuesProducer.TermsDict. postings(PostingsEnum reuse, int flags)Methods in org.apache.lucene.codecs.lucene80 with parameters of type PostingsEnum Modifier and Type Method Description PostingsEnumLucene80DocValuesProducer.TermsDict. postings(PostingsEnum reuse, int flags) -
Uses of PostingsEnum in org.apache.lucene.codecs.lucene84
Subclasses of PostingsEnum in org.apache.lucene.codecs.lucene84 Modifier and Type Class Description (package private) classLucene84PostingsReader.BlockDocsEnum(package private) classLucene84PostingsReader.BlockImpactsDocsEnum(package private) classLucene84PostingsReader.BlockImpactsEverythingEnum(package private) classLucene84PostingsReader.BlockImpactsPostingsEnum(package private) classLucene84PostingsReader.EverythingEnumMethods in org.apache.lucene.codecs.lucene84 that return PostingsEnum Modifier and Type Method Description PostingsEnumLucene84PostingsReader. postings(FieldInfo fieldInfo, BlockTermState termState, PostingsEnum reuse, int flags)PostingsEnumLucene84PostingsReader.BlockDocsEnum. reset(Lucene84PostingsFormat.IntBlockTermState termState, int flags)Methods in org.apache.lucene.codecs.lucene84 with parameters of type PostingsEnum Modifier and Type Method Description PostingsEnumLucene84PostingsReader. postings(FieldInfo fieldInfo, BlockTermState termState, PostingsEnum reuse, int flags) -
Uses of PostingsEnum in org.apache.lucene.codecs.memory
Subclasses of PostingsEnum in org.apache.lucene.codecs.memory Modifier and Type Class Description private static classDirectPostingsFormat.HighFreqDocsEnumprivate static classDirectPostingsFormat.HighFreqPostingsEnumprivate static classDirectPostingsFormat.LowFreqDocsEnumprivate static classDirectPostingsFormat.LowFreqDocsEnumNoPosprivate static classDirectPostingsFormat.LowFreqDocsEnumNoTFprivate static classDirectPostingsFormat.LowFreqPostingsEnumMethods in org.apache.lucene.codecs.memory that return PostingsEnum Modifier and Type Method Description PostingsEnumDirectPostingsFormat.DirectField.DirectIntersectTermsEnum. postings(PostingsEnum reuse, int flags)PostingsEnumDirectPostingsFormat.DirectField.DirectTermsEnum. postings(PostingsEnum reuse, int flags)PostingsEnumFSTTermsReader.TermsReader.BaseTermsEnum. postings(PostingsEnum reuse, int flags)PostingsEnumDirectPostingsFormat.HighFreqDocsEnum. reset(int[] docIDs, int[] freqs)PostingsEnumDirectPostingsFormat.HighFreqPostingsEnum. reset(int[] docIDs, int[] freqs, int[][] positions, byte[][][] payloads)PostingsEnumDirectPostingsFormat.LowFreqDocsEnum. reset(int[] postings)PostingsEnumDirectPostingsFormat.LowFreqDocsEnumNoPos. reset(int[] postings)PostingsEnumDirectPostingsFormat.LowFreqDocsEnumNoTF. reset(int[] postings)PostingsEnumDirectPostingsFormat.LowFreqPostingsEnum. reset(int[] postings, byte[] payloadBytes)Methods in org.apache.lucene.codecs.memory with parameters of type PostingsEnum Modifier and Type Method Description PostingsEnumDirectPostingsFormat.DirectField.DirectIntersectTermsEnum. postings(PostingsEnum reuse, int flags)PostingsEnumDirectPostingsFormat.DirectField.DirectTermsEnum. postings(PostingsEnum reuse, int flags)PostingsEnumFSTTermsReader.TermsReader.BaseTermsEnum. postings(PostingsEnum reuse, int flags) -
Uses of PostingsEnum in org.apache.lucene.codecs.simpletext
Subclasses of PostingsEnum in org.apache.lucene.codecs.simpletext Modifier and Type Class Description private classSimpleTextFieldsReader.SimpleTextDocsEnumprivate classSimpleTextFieldsReader.SimpleTextPostingsEnumprivate static classSimpleTextTermVectorsReader.SimpleTVDocsEnumprivate static classSimpleTextTermVectorsReader.SimpleTVPostingsEnumMethods in org.apache.lucene.codecs.simpletext that return PostingsEnum Modifier and Type Method Description PostingsEnumSimpleTextFieldsReader.SimpleTextTermsEnum. postings(PostingsEnum reuse, int flags)PostingsEnumSimpleTextTermVectorsReader.SimpleTVTermsEnum. postings(PostingsEnum reuse, int flags)Methods in org.apache.lucene.codecs.simpletext with parameters of type PostingsEnum Modifier and Type Method Description PostingsEnumSimpleTextFieldsReader.SimpleTextTermsEnum. postings(PostingsEnum reuse, int flags)PostingsEnumSimpleTextTermVectorsReader.SimpleTVTermsEnum. postings(PostingsEnum reuse, int flags) -
Uses of PostingsEnum in org.apache.lucene.codecs.uniformsplit
Methods in org.apache.lucene.codecs.uniformsplit that return PostingsEnum Modifier and Type Method Description PostingsEnumBlockReader. postings(PostingsEnum reuse, int flags)Methods in org.apache.lucene.codecs.uniformsplit with parameters of type PostingsEnum Modifier and Type Method Description PostingsEnumBlockReader. postings(PostingsEnum reuse, int flags) -
Uses of PostingsEnum in org.apache.lucene.codecs.uniformsplit.sharedterms
Subclasses of PostingsEnum in org.apache.lucene.codecs.uniformsplit.sharedterms Modifier and Type Class Description protected classSTMergingTermsEnum.MultiSegmentsPostingsEnumCombines multiple segmentsPostingsEnumas a singlePostingsEnum, for one field and one term.Fields in org.apache.lucene.codecs.uniformsplit.sharedterms declared as PostingsEnum Modifier and Type Field Description protected PostingsEnumSTMergingTermsEnum.MultiSegmentsPostingsEnum. postingsEnumprotected PostingsEnum[]STMergingTermsEnum.MultiSegmentsPostingsEnum. reusablePostingsEnumsMethods in org.apache.lucene.codecs.uniformsplit.sharedterms that return PostingsEnum Modifier and Type Method Description protected PostingsEnumSTMergingTermsEnum.MultiSegmentsPostingsEnum. getPostings(STUniformSplitTermsWriter.SegmentPostings segmentPostings)(package private) PostingsEnumSTUniformSplitTermsWriter.SegmentPostings. getPostings(java.lang.String fieldName, PostingsEnum reuse, int flags)PostingsEnumSTMergingBlockReader. postings(java.lang.String fieldName, BlockTermState termState, PostingsEnum reuse, int flags)Creates a newPostingsEnumfor the provided field andBlockTermState.PostingsEnumSTMergingTermsEnum. postings(PostingsEnum reuse, int flags)Methods in org.apache.lucene.codecs.uniformsplit.sharedterms with parameters of type PostingsEnum Modifier and Type Method Description (package private) PostingsEnumSTUniformSplitTermsWriter.SegmentPostings. getPostings(java.lang.String fieldName, PostingsEnum reuse, int flags)PostingsEnumSTMergingBlockReader. postings(java.lang.String fieldName, BlockTermState termState, PostingsEnum reuse, int flags)Creates a newPostingsEnumfor the provided field andBlockTermState.PostingsEnumSTMergingTermsEnum. postings(PostingsEnum reuse, int flags) -
Uses of PostingsEnum in org.apache.lucene.document
Fields in org.apache.lucene.document declared as PostingsEnum Modifier and Type Field Description private PostingsEnumFeatureDoubleValuesSource.FeatureDoubleValues. currentReaderPostingsValuesprivate PostingsEnumFeatureSortField.FeatureComparator. currentReaderPostingsValuesConstructors in org.apache.lucene.document with parameters of type PostingsEnum Constructor Description FeatureDoubleValues(PostingsEnum currentReaderPostingsValues) -
Uses of PostingsEnum in org.apache.lucene.index
Subclasses of PostingsEnum in org.apache.lucene.index Modifier and Type Class Description static classFilterLeafReader.FilterPostingsEnumBase class for filteringPostingsEnumimplementations.private static classFreqProxFields.FreqProxDocsEnumprivate static classFreqProxFields.FreqProxPostingsEnum(package private) static classFreqProxTermsWriter.SortingDocsEnum(package private) static classFreqProxTermsWriter.SortingPostingsEnumclassImpactsEnumExtension ofPostingsEnumwhich also provides information about upcoming impacts.(package private) classMappingMultiPostingsEnumExposes flex API, merged from flex API of sub-segments, remapping docIDs (this is used for segment merging).classMultiPostingsEnumExposesPostingsEnum, merged fromPostingsEnumAPI of sub-segments.classSlowImpactsEnumImpactsEnumthat doesn't index impacts but implements the API in a legal way.Fields in org.apache.lucene.index declared as PostingsEnum Modifier and Type Field Description (package private) PostingsEnumMultiPostingsEnum. currentprivate PostingsEnumSlowImpactsEnum. delegateprotected PostingsEnumFilterLeafReader.FilterPostingsEnum. inThe underlying PostingsEnum instance.PostingsEnumMappingMultiPostingsEnum.MappingPostingsSub. postings(package private) PostingsEnumBufferedUpdatesStream.SegmentState. postingsEnumprivate PostingsEnumFrozenBufferedUpdates.TermDocsIterator. postingsEnumPostingsEnumMultiPostingsEnum.EnumWithSlice. postingsEnumPostingsEnumfor this sub-reader.(package private) PostingsEnum[]MultiPostingsEnum. subPostingsEnumsMethods in org.apache.lucene.index that return PostingsEnum Modifier and Type Method Description static PostingsEnumMultiTerms. getTermPostingsEnum(IndexReader r, java.lang.String field, BytesRef term)ReturnsPostingsEnumfor the specified field and term.static PostingsEnumMultiTerms. getTermPostingsEnum(IndexReader r, java.lang.String field, BytesRef term, int flags)ReturnsPostingsEnumfor the specified field and term, with control over whether freqs, positions, offsets or payloads are required.(package private) PostingsEnumFreqProxTermsWriter.SortingDocsEnum. getWrapped()Returns the wrappedPostingsEnum.(package private) PostingsEnumFreqProxTermsWriter.SortingPostingsEnum. getWrapped()Returns the wrappedPostingsEnum.PostingsEnumFilteredTermsEnum. postings(PostingsEnum reuse, int flags)PostingsEnumFilterLeafReader.FilterTermsEnum. postings(PostingsEnum reuse, int flags)PostingsEnumFreqProxFields.FreqProxTermsEnum. postings(PostingsEnum reuse, int flags)PostingsEnumFreqProxTermsWriter.SortingTermsEnum. postings(PostingsEnum reuse, int flags)PostingsEnumLeafReader. postings(Term term)ReturnsPostingsEnumfor the specified term withFREQS.PostingsEnumLeafReader. postings(Term term, int flags)ReturnsPostingsEnumfor the specified term.PostingsEnumMappedMultiFields.MappedMultiTermsEnum. postings(PostingsEnum reuse, int flags)PostingsEnumMultiTermsEnum. postings(PostingsEnum reuse, int flags)PostingsEnumSortedDocValuesTermsEnum. postings(PostingsEnum reuse, int flags)PostingsEnumSortedSetDocValuesTermsEnum. postings(PostingsEnum reuse, int flags)PostingsEnumTermsEnum. postings(PostingsEnum reuse)GetPostingsEnumfor the current term.abstract PostingsEnumTermsEnum. postings(PostingsEnum reuse, int flags)GetPostingsEnumfor the current term, with control over whether freqs, positions, offsets or payloads are required.Methods in org.apache.lucene.index with parameters of type PostingsEnum Modifier and Type Method Description private voidFreqProxTermsWriter.SortingPostingsEnum. addPositions(PostingsEnum in, DataOutput out)PostingsEnumFilteredTermsEnum. postings(PostingsEnum reuse, int flags)PostingsEnumFilterLeafReader.FilterTermsEnum. postings(PostingsEnum reuse, int flags)PostingsEnumFreqProxFields.FreqProxTermsEnum. postings(PostingsEnum reuse, int flags)PostingsEnumFreqProxTermsWriter.SortingTermsEnum. postings(PostingsEnum reuse, int flags)PostingsEnumMappedMultiFields.MappedMultiTermsEnum. postings(PostingsEnum reuse, int flags)PostingsEnumMultiTermsEnum. postings(PostingsEnum reuse, int flags)PostingsEnumSortedDocValuesTermsEnum. postings(PostingsEnum reuse, int flags)PostingsEnumSortedSetDocValuesTermsEnum. postings(PostingsEnum reuse, int flags)PostingsEnumTermsEnum. postings(PostingsEnum reuse)GetPostingsEnumfor the current term.abstract PostingsEnumTermsEnum. postings(PostingsEnum reuse, int flags)GetPostingsEnumfor the current term, with control over whether freqs, positions, offsets or payloads are required.(package private) booleanFreqProxTermsWriter.SortingDocsEnum. reused(PostingsEnum other)(package private) booleanFreqProxTermsWriter.SortingPostingsEnum. reused(PostingsEnum other)Constructors in org.apache.lucene.index with parameters of type PostingsEnum Constructor Description FilterPostingsEnum(PostingsEnum in)Create a new FilterPostingsEnumSlowImpactsEnum(PostingsEnum delegate)Wrap the givenPostingsEnum.SortingDocsEnum(int maxDoc, FreqProxTermsWriter.SortingDocsEnum reuse, PostingsEnum in, boolean withFreqs, Sorter.DocMap docMap)SortingPostingsEnum(int maxDoc, FreqProxTermsWriter.SortingPostingsEnum reuse, PostingsEnum in, Sorter.DocMap docMap, boolean storeOffsets) -
Uses of PostingsEnum in org.apache.lucene.index.memory
Subclasses of PostingsEnum in org.apache.lucene.index.memory Modifier and Type Class Description private classMemoryIndex.MemoryIndexReader.MemoryPostingsEnumMethods in org.apache.lucene.index.memory that return PostingsEnum Modifier and Type Method Description PostingsEnumMemoryIndex.MemoryIndexReader.MemoryTermsEnum. postings(PostingsEnum reuse, int flags)PostingsEnumMemoryIndex.MemoryIndexReader.MemoryPostingsEnum. reset(int start, int end, int freq)Methods in org.apache.lucene.index.memory with parameters of type PostingsEnum Modifier and Type Method Description PostingsEnumMemoryIndex.MemoryIndexReader.MemoryTermsEnum. postings(PostingsEnum reuse, int flags) -
Uses of PostingsEnum in org.apache.lucene.payloads
Methods in org.apache.lucene.payloads with parameters of type PostingsEnum Modifier and Type Method Description voidPayloadSpanCollector. collectLeaf(PostingsEnum postings, int position, Term term) -
Uses of PostingsEnum in org.apache.lucene.queries.payloads
Methods in org.apache.lucene.queries.payloads with parameters of type PostingsEnum Modifier and Type Method Description voidPayloadScoreQuery.PayloadSpans. collectLeaf(PostingsEnum postings, int position, Term term)voidSpanPayloadCheckQuery.PayloadChecker. collectLeaf(PostingsEnum postings, int position, Term term) -
Uses of PostingsEnum in org.apache.lucene.search
Subclasses of PostingsEnum in org.apache.lucene.search Modifier and Type Class Description (package private) static classMultiPhraseQuery.UnionFullPostingsEnum(package private) static classMultiPhraseQuery.UnionPostingsEnumTakes the logical union of multiple PostingsEnum iterators.Fields in org.apache.lucene.search declared as PostingsEnum Modifier and Type Field Description (package private) PostingsEnumMultiPhraseQuery.PostingsAndPosition. pe(package private) PostingsEnumSynonymQuery.DisiWrapperFreq. peprivate PostingsEnumTermMatchesIterator. pePostingsEnumTermAutomatonQuery.EnumAndScorer. posEnumprivate PostingsEnumExactPhraseMatcher.PostingsAndPosition. postings(package private) PostingsEnumPhrasePositions. postings(package private) PostingsEnumPhraseQuery.PostingsAndFreq. postingsprivate PostingsEnumTermScorer. postingsEnum(package private) PostingsEnum[]MultiPhraseQuery.UnionPostingsEnum. subslist of subs (unordered)Methods in org.apache.lucene.search that return PostingsEnum Modifier and Type Method Description PostingsEnumFuzzyTermsEnum. postings(PostingsEnum reuse, int flags)Methods in org.apache.lucene.search with parameters of type PostingsEnum Modifier and Type Method Description booleanMultiPhraseQuery.UnionPostingsEnum.DocsQueue. lessThan(PostingsEnum a, PostingsEnum b)PostingsEnumFuzzyTermsEnum. postings(PostingsEnum reuse, int flags)Constructors in org.apache.lucene.search with parameters of type PostingsEnum Constructor Description EnumAndScorer(int termID, PostingsEnum posEnum)PhrasePositions(PostingsEnum postings, int o, int ord, Term[] terms)PostingsAndFreq(PostingsEnum postings, ImpactsEnum impacts, int position, java.util.List<Term> terms)PostingsAndFreq(PostingsEnum postings, ImpactsEnum impacts, int position, Term... terms)PostingsAndPosition(PostingsEnum postings, int offset)PostingsAndPosition(PostingsEnum pe)TermMatchesIterator(Query query, PostingsEnum pe)Create a newTermMatchesIteratorfor the given term and postings listTermScorer(Weight weight, PostingsEnum postingsEnum, LeafSimScorer docScorer)Construct aTermScorerthat will iterate all documents.Constructor parameters in org.apache.lucene.search with type arguments of type PostingsEnum Constructor Description UnionFullPostingsEnum(java.util.List<PostingsEnum> subs)UnionPostingsEnum(java.util.Collection<PostingsEnum> subs) -
Uses of PostingsEnum in org.apache.lucene.search.spans
Fields in org.apache.lucene.search.spans declared as PostingsEnum Modifier and Type Field Description protected PostingsEnumTermSpans. postingsMethods in org.apache.lucene.search.spans that return PostingsEnum Modifier and Type Method Description PostingsEnumTermSpans. getPostings()Methods in org.apache.lucene.search.spans with parameters of type PostingsEnum Modifier and Type Method Description voidSpanCollector. collectLeaf(PostingsEnum postings, int position, Term term)Collect information from postingsConstructors in org.apache.lucene.search.spans with parameters of type PostingsEnum Constructor Description TermSpans(LeafSimScorer scorer, PostingsEnum postings, Term term, float positionsCost) -
Uses of PostingsEnum in org.apache.lucene.search.suggest.document
Fields in org.apache.lucene.search.suggest.document declared as PostingsEnum Modifier and Type Field Description private PostingsEnumCompletionFieldsConsumer.CompletionTermWriter. postingsEnum -
Uses of PostingsEnum in org.apache.lucene.search.uhighlight
Fields in org.apache.lucene.search.uhighlight declared as PostingsEnum Modifier and Type Field Description private PostingsEnumOffsetsEnum.OfPostings. postingsEnumMethods in org.apache.lucene.search.uhighlight that return PostingsEnum Modifier and Type Method Description PostingsEnumOffsetsEnum.OfPostings. getPostingsEnum()PostingsEnumTermVectorFilteredLeafReader.TermVectorFilteredTermsEnum. postings(PostingsEnum reuse, int flags)Methods in org.apache.lucene.search.uhighlight with parameters of type PostingsEnum Modifier and Type Method Description voidPhraseHelper.OffsetSpanCollector. collectLeaf(PostingsEnum postings, int position, Term term)PostingsEnumTermVectorFilteredLeafReader.TermVectorFilteredTermsEnum. postings(PostingsEnum reuse, int flags)Constructors in org.apache.lucene.search.uhighlight with parameters of type PostingsEnum Constructor Description OfPostings(BytesRef term, int freq, PostingsEnum postingsEnum)OfPostings(BytesRef term, PostingsEnum postingsEnum)
-