Parse the long from a numeric field.

Namespace: Lucene.Net.Index
Assembly: Lucene.Net.Contrib.Core (in Lucene.Net.Contrib.Core.dll) Version: 2.9.2.0 (2.9.2)

Syntax

C#
protected override bool TryParseNumeric(
	string s
)
Visual Basic
Protected Overrides Function TryParseNumeric ( _
	s As String _
) As Boolean
Visual C++
protected:
virtual bool TryParseNumeric(
	String^ s
) override

Parameters

s
Type: System..::..String
The string to parse.

Return Value

True if the string was parsed, false to inidicate the end of usable terms in a numeric field.

See Also