org.apache.lucene.analysis.miscellaneous.Lucene47WordDelimiterFilter.isDigit C# (CSharp) Method

isDigit() static private method

Checks if the given word type includes #DIGIT
static private isDigit ( int type ) : bool
type int Word type to check
return bool
	  internal static bool isDigit(int type)
	  {
		return (type & DIGIT) != 0;
	  }