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

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

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