Return doc value as a string.

Optional: DocValues implementation can (but don't have to) override this method.

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

Syntax

C#
public virtual string StrVal(
	int doc
)
Visual Basic
Public Overridable Function StrVal ( _
	doc As Integer _
) As String
Visual C++
public:
virtual String^ StrVal(
	int doc
)

Parameters

doc
Type: System..::..Int32
document whose string value is requested.

Return Value

[Missing <returns> documentation for "M:Lucene.Net.Search.Function.DocValues.StrVal(System.Int32)"]

See Also