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

isAlpha() static private method

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