org.apache.lucene.analysis.compound.hyphenation.HyphenationTree.HyphenationTree C# (CSharp) Method

HyphenationTree() public method

public HyphenationTree ( ) : System
return System
	  public HyphenationTree()
	  {
		stoplist = new Dictionary<>(23); // usually a small table
		classmap = new TernaryTree();
		vspace = new ByteVector();
		vspace.alloc(1); // this reserves index 0, which we don't use
	  }