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.index Code to maintain and access indices.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 aDocsEnum
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.index
Subclasses of TermState in org.apache.lucene.index Modifier and Type Class Description class
OrdTermState
An ordinal basedTermState
Methods in org.apache.lucene.index that return TermState Modifier and Type Method Description TermState
TermState. clone()
TermState
TermContext. get(int ord)
TermState
FilteredTermsEnum. termState()
Returns the filtered enums term stateTermState
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
TermContext. register(TermState state, int ord, int docFreq, long totalTermFreq)
Registers and associates aTermState
with an leaf ordinal.void
FilteredTermsEnum. seekExact(BytesRef term, TermState state)
This enum does not support seeking!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 TermContext(IndexReaderContext context, TermState state, int ord, int docFreq, long totalTermFreq)
-
Uses of TermState in org.apache.lucene.search
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)
-