Class ScoreTerm
An "interesting word" and related top field, score and frequency information.
Inheritance
System.Object
ScoreTerm
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Lucene.Net.Queries.Mlt
Assembly: Lucene.Net.Queries.dll
Syntax
public class ScoreTerm
Properties
| Improve this Doc View SourceDocFreq
Gets the frequency of this word in the index (System.Int32).
Declaration
public int DocFreq { get; }
Property Value
Type | Description |
---|---|
System.Int32 |
Idf
Gets the inverse document frequency (IDF) value (System.Single).
Declaration
public float Idf { get; }
Property Value
Type | Description |
---|---|
System.Single |
Score
Gets the score for this word (System.Single).
Declaration
public float Score { get; }
Property Value
Type | Description |
---|---|
System.Single |
Tf
Gets the frequency of this word in the source document (System.Int32).
Declaration
public int Tf { get; }
Property Value
Type | Description |
---|---|
System.Int32 |
TopField
Gets the top field that this word comes from.
Declaration
public string TopField { get; }
Property Value
Type | Description |
---|---|
System.String |
Word
Gets the word.
Declaration
public string Word { get; }
Property Value
Type | Description |
---|---|
System.String |