org.apache.lucene.analysis.miscellaneous.Lucene47WordDelimiterFilter.isAlpha C# (CSharp) Метод

isAlpha() статический приватный Метод

Checks if the given word type includes #ALPHA
static private isAlpha ( int type ) : bool
type int Word type to check
Результат bool
	  internal static bool isAlpha(int type)
	  {
		return (type & ALPHA) != 0;
	  }