Lucene.Net.Analysis.Ru.RussianLetterTokenizer.IsTokenChar C# (CSharp) Method

IsTokenChar() protected method

Collects only characters which satisfy Character#isLetter(int).
protected IsTokenChar ( int c ) : bool
c int
return bool
        protected override bool IsTokenChar(int c)
        {
            return Character.IsLetter(c) || (c >= DIGIT_0 && c <= DIGIT_9);
        }
    }