Class Terms
Access to the terms in a specific field. See Fields.
Inheritance
Inherited Members
Namespace: Lucene.Net.Index
Assembly: Lucene.Net.dll
Syntax
public abstract class Terms
Constructors
| Improve this Doc View SourceTerms()
Sole constructor. (For invocation by subclass constructors, typically implicit.)
Declaration
protected Terms()
Fields
| Improve this Doc View SourceEMPTY_ARRAY
Zero-length array of Terms.
Declaration
public static readonly Terms[] EMPTY_ARRAY
Field Value
Type | Description |
---|---|
Terms[] |
Properties
| Improve this Doc View SourceComparer
Return the IComparer{BytesRef} used to sort terms
provided by the iterator. This method may return null
if there are no terms. This method may be invoked
many times; it's best to cache a single instance &
reuse it.
Declaration
public abstract IComparer<BytesRef> Comparer { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IComparer<BytesRef> |
Count
Returns the number of terms for this field, or -1 if this measure isn't stored by the codec. Note that, just like other term measures, this measure does not take deleted documents into account. NOTE: This was size() in Lucene.
Declaration
public abstract long Count { get; }
Property Value
Type | Description |
---|---|
System.Int64 |
DocCount
Returns the number of documents that have at least one term for this field, or -1 if this measure isn't stored by the codec. Note that, just like other term measures, this measure does not take deleted documents into account.
Declaration
public abstract int DocCount { get; }
Property Value
Type | Description |
---|---|
System.Int32 |
HasFreqs
Returns true if documents in this field store per-document term frequency (Freq).
Declaration
public abstract bool HasFreqs { get; }
Property Value
Type | Description |
---|---|
System.Boolean |
HasOffsets
Returns true
if documents in this field store offsets.
Declaration
public abstract bool HasOffsets { get; }
Property Value
Type | Description |
---|---|
System.Boolean |
HasPayloads
Returns true
if documents in this field store payloads.
Declaration
public abstract bool HasPayloads { get; }
Property Value
Type | Description |
---|---|
System.Boolean |
HasPositions
Returns true
if documents in this field store positions.
Declaration
public abstract bool HasPositions { get; }
Property Value
Type | Description |
---|---|
System.Boolean |
SumDocFreq
Returns the sum of DocFreq for all terms in this field, or -1 if this measure isn't stored by the codec. Note that, just like other term measures, this measure does not take deleted documents into account.
Declaration
public abstract long SumDocFreq { get; }
Property Value
Type | Description |
---|---|
System.Int64 |
SumTotalTermFreq
Returns the sum of TotalTermFreq for all terms in this field, or -1 if this measure isn't stored by the codec (or if this fields omits term freq and positions). Note that, just like other term measures, this measure does not take deleted documents into account.
Declaration
public abstract long SumTotalTermFreq { get; }
Property Value
Type | Description |
---|---|
System.Int64 |
Methods
| Improve this Doc View SourceGetIterator(TermsEnum)
Returns an iterator that will step through all
terms. This method will not return null
. If you have
a previous TermsEnum, for example from a different
field, you can pass it for possible reuse if the
implementation can do so.
Declaration
public abstract TermsEnum GetIterator(TermsEnum reuse)
Parameters
Type | Name | Description |
---|---|---|
TermsEnum | reuse |
Returns
Type | Description |
---|---|
TermsEnum |
Intersect(CompiledAutomaton, BytesRef)
Returns a TermsEnum that iterates over all terms that
are accepted by the provided
CompiledAutomaton. If the startTerm
is
provided then the returned enum will only accept terms
startTerm
, but you still must call Next() first to get to the first term. Note that the providedstartTerm
must be accepted by the automaton.
NOTE: the returned TermsEnum cannot seek
.Declaration
public virtual TermsEnum Intersect(CompiledAutomaton compiled, BytesRef startTerm)
Parameters
Type | Name | Description |
---|---|---|
CompiledAutomaton | compiled | |
BytesRef | startTerm |
Returns
Type | Description |
---|---|
TermsEnum |