Lucene.Net.Analysis.Miscellaneous.Lucene47WordDelimiterFilter.IsDigit C# (CSharp) Méthode

IsDigit() static private méthode

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