Lucene.Net.Analysis.Compound.Hyphenation.HyphenationTree.AddException C# (CSharp) Method

AddException() public method

Add an exception to the tree. It is used by PatternParser PatternParser class as callback to store the hyphenation exceptions.
public AddException ( string word, List hyphenatedword ) : void
word string normalized word
hyphenatedword List a vector of alternating strings and /// objects.
return void
        public virtual void AddException(string word, List<object> hyphenatedword)
        {
            stoplist[word] = hyphenatedword;
        }