Lucene.Net.Analysis.Miscellaneous.Lucene47WordDelimiterFilter.IsDigit C# (CSharp) Метод

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

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