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

charType() private method

Determines the type of the given character
private charType ( int ch ) : int
ch int Character whose type is to be determined
return int
	  private int charType(int ch)
	  {
		if (ch < charTypeTable.Length)
		{
		  return charTypeTable[ch];
		}
		return getType(ch);
	  }