Lucene.Net.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;
        }