Uses of Class
org.apache.lucene.index.FieldInvertState
-
Packages that use FieldInvertState Package Description org.apache.lucene.index Code to maintain and access indices.org.apache.lucene.search.similarities This package contains the various ranking models that can be used in Lucene.org.apache.lucene.search.similarity Misc similarity implementations. -
-
Uses of FieldInvertState in org.apache.lucene.index
Fields in org.apache.lucene.index declared as FieldInvertState Modifier and Type Field Description protected FieldInvertState
TermsHashPerField. fieldState
(package private) FieldInvertState
DefaultIndexingChain.PerField. invertState
Methods in org.apache.lucene.index with parameters of type FieldInvertState Modifier and Type Method Description TermsHashPerField
FreqProxTermsWriter. addField(FieldInvertState invertState, FieldInfo fieldInfo)
(package private) abstract TermsHashPerField
TermsHash. addField(FieldInvertState fieldInvertState, FieldInfo fieldInfo)
TermsHashPerField
TermVectorsConsumer. addField(FieldInvertState invertState, FieldInfo fieldInfo)
Constructors in org.apache.lucene.index with parameters of type FieldInvertState Constructor Description FreqProxTermsWriterPerField(FieldInvertState invertState, TermsHash termsHash, FieldInfo fieldInfo, TermsHashPerField nextPerField)
TermsHashPerField(int streamCount, FieldInvertState fieldState, TermsHash termsHash, TermsHashPerField nextPerField, FieldInfo fieldInfo)
streamCount: how many streams this field stores per term.TermVectorsConsumerPerField(FieldInvertState invertState, TermVectorsConsumer termsWriter, FieldInfo fieldInfo)
-
Uses of FieldInvertState in org.apache.lucene.search.similarities
Methods in org.apache.lucene.search.similarities with parameters of type FieldInvertState Modifier and Type Method Description long
BM25Similarity. computeNorm(FieldInvertState state)
long
BooleanSimilarity. computeNorm(FieldInvertState state)
long
MultiSimilarity. computeNorm(FieldInvertState state)
long
PerFieldSimilarityWrapper. computeNorm(FieldInvertState state)
abstract long
Similarity. computeNorm(FieldInvertState state)
Computes the normalization value for a field, given the accumulated state of term processing for this field (seeFieldInvertState
).long
SimilarityBase. computeNorm(FieldInvertState state)
Encodes the document length in the same way asBM25Similarity
.long
TFIDFSimilarity. computeNorm(FieldInvertState state)
-
Uses of FieldInvertState in org.apache.lucene.search.similarity
Methods in org.apache.lucene.search.similarity with parameters of type FieldInvertState Modifier and Type Method Description long
LegacyBM25Similarity. computeNorm(FieldInvertState state)
Deprecated.
-