Class TermContext
Maintains a Index
Inheritance
Inherited Members
Namespace: Lucene.Net.Index
Assembly: Lucene.Net.dll
Syntax
[Serializable]
public sealed class TermContext
Constructors
| Improve this Doc View SourceTermContext(IndexReaderContext)
Creates an empty Term
Declaration
public TermContext(IndexReaderContext context)
Parameters
Type | Name | Description |
---|---|---|
Index |
context |
TermContext(IndexReaderContext, TermState, Int32, Int32, Int64)
Creates a Term
Declaration
public TermContext(IndexReaderContext context, TermState state, int ord, int docFreq, long totalTermFreq)
Parameters
Type | Name | Description |
---|---|---|
Index |
context | |
Term |
state | |
System. |
ord | |
System. |
docFreq | |
System. |
totalTermFreq |
Properties
| Improve this Doc View SourceDocFreq
expert: only available for queries that want to lie about docfreq
Declaration
public int DocFreq { get; }
Property Value
Type | Description |
---|---|
System. |
TopReaderContext
Holds the Index
Declaration
public IndexReaderContext TopReaderContext { get; }
Property Value
Type | Description |
---|---|
Index |
TotalTermFreq
Returns the accumulated term frequency of all Term
Declaration
public long TotalTermFreq { get; }
Property Value
Type | Description |
---|---|
System. |
the accumulated term frequency of all Term |
Methods
| Improve this Doc View SourceBuild(IndexReaderContext, Term)
Creates a Term
Note: the given context must be a top-level context.
Declaration
public static TermContext Build(IndexReaderContext context, Term term)
Parameters
Type | Name | Description |
---|---|---|
Index |
context | |
Term | term |
Returns
Type | Description |
---|---|
Term |
Clear()
Clears the Term
Declaration
public void Clear()
Get(Int32)
Declaration
public TermState Get(int ord)
Parameters
Type | Name | Description |
---|---|---|
System. |
ord | The readers leaf ordinal to get the Term |
Returns
Type | Description |
---|---|
Term |
The Term |
Register(TermState, Int32, Int32, Int64)
Registers and associates a Term
Declaration
public void Register(TermState state, int ord, int docFreq, long totalTermFreq)
Parameters
Type | Name | Description |
---|---|---|
Term |
state | |
System. |
ord | |
System. |
docFreq | |
System. |
totalTermFreq |