org.apache.lucene.analysis.miscellaneous.WordDelimiterIterator.setText C# (CSharp) Method

setText() private method

Reset the text to a new value, and reset all state
private setText ( char text, int length ) : void
text char New text
length int length of the text
return void
	  internal void setText(char[] text, int length)
	  {
		this.text = text;
		this.length = this.endBounds = length;
		current = startBounds = end = 0;
		skipPossessive = hasFinalPossessive = false;
		setBounds();
	  }