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

ShouldConcatenate() private method

Determines whether to concatenate a word or number if the current word is the given type
private ShouldConcatenate ( int wordType ) : bool
wordType int Type of the current word used to determine if it should be concatenated
return bool
        private bool ShouldConcatenate(int wordType)
        {
            return (Has(CATENATE_WORDS) && IsAlpha(wordType)) || (Has(CATENATE_NUMBERS) && IsDigit(wordType));
        }