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

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

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