org.apache.lucene.analysis.miscellaneous.Lucene47WordDelimiterFilter.isDigit C# (CSharp) 메소드

isDigit() 정적인 개인적인 메소드

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