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

HyphenationTree() public method

public HyphenationTree ( ) : Lucene.Net.Support
return Lucene.Net.Support
        public HyphenationTree()
        {
            stoplist = new HashMap<string, IList<object>>(23); // usually a small table
            classmap = new TernaryTree();
            vspace = new ByteVector();
            vspace.Alloc(1); // this reserves index 0, which we don't use
        }