Interface ITermFreqVector
Provides access to stored term vector of a document field. The vector consists of the name of the field, an array of the terms tha occur in the field of the Document and a parallel array of frequencies. Thus, getTermFrequencies()[5] corresponds with the frequency of getTerms()[5], assuming there are at least 5 terms in the Document.
Namespace:
Assembly: Lucene.Net.NetCore.dll
Syntax
public interface ITermFreqVector
Properties
Name | Description |
---|---|
Field | The IFieldable name. |
Size |
Methods
Name | Description |
---|---|
GetTermFrequencies() | Array of term frequencies. Locations of the array correspond one to one
to the terms in the array obtained from |
GetTerms() | |
IndexesOf(String[], Int32, Int32) | Just like |
IndexOf(String) | Return an index in the term numbers array returned from
|