Return doc value as an int.

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 int IntVal(
	int doc
)
Visual Basic
Public Overridable Function IntVal ( _
	doc As Integer _
) As Integer
Visual C++
public:
virtual int IntVal(
	int doc
)

Parameters

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

Return Value

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

See Also