Constructs a Token with null text and start & end offsets.

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

Syntax

C#
public Token(
	int start,
	int end
)
Visual Basic
Public Sub New ( _
	start As Integer, _
	end As Integer _
)
Visual C++
public:
Token(
	int start, 
	int end
)

Parameters

start
Type: System..::..Int32
start offset in the source text
end
Type: System..::..Int32
end offset in the source text

See Also