Initializes a new instance of the EdgeNGramTokenizer class

Namespace: Lucene.Net.Analysis.NGram
Assembly: Lucene.Net.Contrib.Analyzers (in Lucene.Net.Contrib.Analyzers.dll) Version: 2.9.2.1 (2.9.2.1)

Syntax

C#
public EdgeNGramTokenizer(
	AttributeSource..::..AttributeFactory factory,
	TextReader input,
	string sideLabel,
	int minGram,
	int maxGram
)
Visual Basic
Public Sub New ( _
	factory As AttributeSource..::..AttributeFactory, _
	input As TextReader, _
	sideLabel As String, _
	minGram As Integer, _
	maxGram As Integer _
)
Visual C++
public:
EdgeNGramTokenizer(
	AttributeSource..::..AttributeFactory^ factory, 
	TextReader^ input, 
	String^ sideLabel, 
	int minGram, 
	int maxGram
)

Parameters

factory
Type: Lucene.Net.Util..::..AttributeSource..::..AttributeFactory

[Missing <param name="factory"/> documentation for "M:Lucene.Net.Analysis.NGram.EdgeNGramTokenizer.#ctor(Lucene.Net.Util.AttributeSource.AttributeFactory,System.IO.TextReader,System.String,System.Int32,System.Int32)"]

input
Type: System.IO..::..TextReader

[Missing <param name="input"/> documentation for "M:Lucene.Net.Analysis.NGram.EdgeNGramTokenizer.#ctor(Lucene.Net.Util.AttributeSource.AttributeFactory,System.IO.TextReader,System.String,System.Int32,System.Int32)"]

sideLabel
Type: System..::..String

[Missing <param name="sideLabel"/> documentation for "M:Lucene.Net.Analysis.NGram.EdgeNGramTokenizer.#ctor(Lucene.Net.Util.AttributeSource.AttributeFactory,System.IO.TextReader,System.String,System.Int32,System.Int32)"]

minGram
Type: System..::..Int32

[Missing <param name="minGram"/> documentation for "M:Lucene.Net.Analysis.NGram.EdgeNGramTokenizer.#ctor(Lucene.Net.Util.AttributeSource.AttributeFactory,System.IO.TextReader,System.String,System.Int32,System.Int32)"]

maxGram
Type: System..::..Int32

[Missing <param name="maxGram"/> documentation for "M:Lucene.Net.Analysis.NGram.EdgeNGramTokenizer.#ctor(Lucene.Net.Util.AttributeSource.AttributeFactory,System.IO.TextReader,System.String,System.Int32,System.Int32)"]

See Also