Lucene.Net.Analysis.Miscellaneous.Lucene47WordDelimiterFilter.IsUpper C# (CSharp) Method

IsUpper() static private method

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