Uses of Class
org.apache.lucene.index.TermState
-
Packages that use TermState 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.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.lucene80
for an overview of the index format.org.apache.lucene.codecs.lucene84 Lucene 8.4 file format.org.apache.lucene.codecs.memory Term dictionary, DocValues or Postings formats that are read entirely into memory.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.org.apache.lucene.search Code to search indices. -
-
Uses of TermState in org.apache.lucene.codecs
Subclasses of TermState in org.apache.lucene.codecs Modifier and Type Class Description class
BlockTermState
Holds all state required forPostingsReaderBase
to produce aPostingsEnum
without re-seeking the terms dict.Methods in org.apache.lucene.codecs with parameters of type TermState Modifier and Type Method Description void
BlockTermState. copyFrom(TermState _other)
-
Uses of TermState in org.apache.lucene.codecs.blockterms
Methods in org.apache.lucene.codecs.blockterms that return TermState Modifier and Type Method Description TermState
BlockTermsReader.FieldReader.SegmentTermsEnum. termState()
Methods in org.apache.lucene.codecs.blockterms with parameters of type TermState Modifier and Type Method Description void
BlockTermsReader.FieldReader.SegmentTermsEnum. seekExact(BytesRef target, TermState otherState)
-
Uses of TermState in org.apache.lucene.codecs.blocktree
Methods in org.apache.lucene.codecs.blocktree that return TermState Modifier and Type Method Description TermState
IntersectTermsEnum. termState()
TermState
SegmentTermsEnum. termState()
Methods in org.apache.lucene.codecs.blocktree with parameters of type TermState Modifier and Type Method Description void
SegmentTermsEnum. seekExact(BytesRef target, TermState otherState)
-
Uses of TermState in org.apache.lucene.codecs.blocktreeords
Methods in org.apache.lucene.codecs.blocktreeords that return TermState Modifier and Type Method Description TermState
OrdsIntersectTermsEnum. termState()
TermState
OrdsSegmentTermsEnum. termState()
Methods in org.apache.lucene.codecs.blocktreeords with parameters of type TermState Modifier and Type Method Description void
OrdsSegmentTermsEnum. seekExact(BytesRef target, TermState otherState)
-
Uses of TermState in org.apache.lucene.codecs.idversion
Subclasses of TermState in org.apache.lucene.codecs.idversion Modifier and Type Class Description (package private) class
IDVersionTermState
Methods in org.apache.lucene.codecs.idversion that return TermState Modifier and Type Method Description TermState
IDVersionSegmentTermsEnum. termState()
Methods in org.apache.lucene.codecs.idversion with parameters of type TermState Modifier and Type Method Description void
IDVersionTermState. copyFrom(TermState _other)
void
IDVersionSegmentTermsEnum. seekExact(BytesRef target, TermState otherState)
-
Uses of TermState in org.apache.lucene.codecs.lucene50
Subclasses of TermState in org.apache.lucene.codecs.lucene50 Modifier and Type Class Description static class
Lucene50PostingsFormat.IntBlockTermState
Holds all state required forLucene50PostingsReader
to produce aPostingsEnum
without re-seeking the terms dict.Methods in org.apache.lucene.codecs.lucene50 with parameters of type TermState Modifier and Type Method Description void
Lucene50PostingsFormat.IntBlockTermState. copyFrom(TermState _other)
-
Uses of TermState in org.apache.lucene.codecs.lucene84
Subclasses of TermState in org.apache.lucene.codecs.lucene84 Modifier and Type Class Description static class
Lucene84PostingsFormat.IntBlockTermState
Holds all state required forLucene84PostingsReader
to produce aPostingsEnum
without re-seeking the terms dict.Methods in org.apache.lucene.codecs.lucene84 with parameters of type TermState Modifier and Type Method Description void
Lucene84PostingsFormat.IntBlockTermState. copyFrom(TermState _other)
-
Uses of TermState in org.apache.lucene.codecs.memory
Methods in org.apache.lucene.codecs.memory that return TermState Modifier and Type Method Description TermState
DirectPostingsFormat.DirectField.DirectIntersectTermsEnum. termState()
TermState
DirectPostingsFormat.DirectField.DirectTermsEnum. termState()
TermState
FSTOrdTermsReader.TermsReader.BaseTermsEnum. termState()
TermState
FSTTermsReader.TermsReader.BaseTermsEnum. termState()
Methods in org.apache.lucene.codecs.memory with parameters of type TermState Modifier and Type Method Description void
DirectPostingsFormat.DirectField.DirectTermsEnum. seekExact(BytesRef term, TermState state)
void
FSTOrdTermsReader.TermsReader.SegmentTermsEnum. seekExact(BytesRef target, TermState otherState)
void
FSTTermsReader.TermsReader.SegmentTermsEnum. seekExact(BytesRef target, TermState otherState)
-
Uses of TermState in org.apache.lucene.codecs.uniformsplit
Methods in org.apache.lucene.codecs.uniformsplit that return TermState Modifier and Type Method Description TermState
BlockReader. termState()
Methods in org.apache.lucene.codecs.uniformsplit with parameters of type TermState Modifier and Type Method Description static long
DeltaBaseTermStateSerializer. ramBytesUsed(TermState termState)
static long
RamUsageUtil. ramBytesUsed(TermState termState)
void
BlockReader. seekExact(BytesRef term, TermState state)
Positions thisBlockReader
without re-seeking the term dictionary.void
IntersectBlockReader. seekExact(BytesRef term, TermState state)
-
Uses of TermState in org.apache.lucene.codecs.uniformsplit.sharedterms
Methods in org.apache.lucene.codecs.uniformsplit.sharedterms that return TermState Modifier and Type Method Description TermState
STMergingTermsEnum. termState()
Methods in org.apache.lucene.codecs.uniformsplit.sharedterms with parameters of type TermState Modifier and Type Method Description void
STMergingBlockReader. seekExact(BytesRef term, TermState state)
void
STMergingTermsEnum. seekExact(BytesRef term, TermState state)
-
Uses of TermState in org.apache.lucene.index
Subclasses of TermState in org.apache.lucene.index Modifier and Type Class Description class
OrdTermState
An ordinal basedTermState
Fields in org.apache.lucene.index declared as TermState Modifier and Type Field Description private static TermState
TermStates. EMPTY_TERMSTATE
private TermState[]
TermStates. states
Methods in org.apache.lucene.index that return TermState Modifier and Type Method Description TermState
TermState. clone()
TermState
TermStates. get(LeafReaderContext ctx)
TermState
BaseTermsEnum. termState()
TermState
FilteredTermsEnum. termState()
Returns the filtered enums term stateTermState
FilterLeafReader.FilterTermsEnum. termState()
TermState
FreqProxFields.FreqProxTermsEnum. termState()
Expert: Returns the TermsEnums internal state to position the TermsEnum without re-seeking the term dictionary.TermState
SortedDocValuesTermsEnum. termState()
TermState
SortedSetDocValuesTermsEnum. termState()
abstract TermState
TermsEnum. termState()
Expert: Returns the TermsEnums internal state to position the TermsEnum without re-seeking the term dictionary.Methods in org.apache.lucene.index with parameters of type TermState Modifier and Type Method Description void
OrdTermState. copyFrom(TermState other)
abstract void
TermState. copyFrom(TermState other)
Copies the content of the givenTermState
to this instancevoid
TermStates. register(TermState state, int ord)
Expert: Registers and associates aTermState
with an leaf ordinal.void
TermStates. register(TermState state, int ord, int docFreq, long totalTermFreq)
Registers and associates aTermState
with an leaf ordinal.void
BaseTermsEnum. seekExact(BytesRef term, TermState state)
void
FilteredTermsEnum. seekExact(BytesRef term, TermState state)
This enum does not support seeking!void
FilterLeafReader.FilterTermsEnum. seekExact(BytesRef term, TermState state)
void
SortedDocValuesTermsEnum. seekExact(BytesRef term, TermState state)
void
SortedSetDocValuesTermsEnum. seekExact(BytesRef term, TermState state)
abstract void
TermsEnum. seekExact(BytesRef term, TermState state)
Expert: Seeks a specific position byTermState
previously obtained fromTermsEnum.termState()
.Constructors in org.apache.lucene.index with parameters of type TermState Constructor Description TermStates(IndexReaderContext context, TermState state, int ord, int docFreq, long totalTermFreq)
-
Uses of TermState in org.apache.lucene.index.memory
Methods in org.apache.lucene.index.memory that return TermState Modifier and Type Method Description TermState
MemoryIndex.MemoryIndexReader.MemoryTermsEnum. termState()
Methods in org.apache.lucene.index.memory with parameters of type TermState Modifier and Type Method Description void
MemoryIndex.MemoryIndexReader.MemoryTermsEnum. seekExact(BytesRef term, TermState state)
-
Uses of TermState in org.apache.lucene.search
Fields in org.apache.lucene.search declared as TermState Modifier and Type Field Description (package private) TermState
MultiTermQueryConstantScoreWrapper.TermAndState. state
(package private) TermState
TermInSetQuery.TermAndState. state
protected TermState
PhraseWildcardQuery.TermBytesTermState. termState
Methods in org.apache.lucene.search that return TermState Modifier and Type Method Description TermState
FuzzyTermsEnum. termState()
Methods in org.apache.lucene.search with parameters of type TermState Modifier and Type Method Description void
FuzzyTermsEnum. seekExact(BytesRef term, TermState state)
Constructors in org.apache.lucene.search with parameters of type TermState Constructor Description TermAndState(BytesRef term, TermState state, int docFreq, long totalTermFreq)
TermBytesTermState(BytesRef termBytes, TermState termState)
-