Returns an enumeration of all terms starting at a given term. If the given term does not exist, the enumeration is positioned at the first term greater than the supplied term. The enumeration is ordered by Term.compareTo(). Each term is greater than all that precede it in the enumeration.

Namespace: Lucene.Net.Index
Assembly: Lucene.Net (in Lucene.Net.dll) Version: 2.9.4.1

Syntax

C#
public abstract TermEnum Terms(
	Term t
)
Visual Basic
Public MustOverride Function Terms ( _
	t As Term _
) As TermEnum
Visual C++
public:
virtual TermEnum^ Terms(
	Term^ t
) abstract

Parameters

t
Type: Lucene.Net.Index..::..Term

[Missing <param name="t"/> documentation for "M:Lucene.Net.Index.IndexReader.Terms(Lucene.Net.Index.Term)"]

Return Value

[Missing <returns> documentation for "M:Lucene.Net.Index.IndexReader.Terms(Lucene.Net.Index.Term)"]

See Also