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

IsDigit() static private method

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