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

loadPatterns() public method

Read hyphenation patterns from an XML file.
In case the parsing fails
public loadPatterns ( File f ) : void
f File the filename
return void
	  public virtual void loadPatterns(File f)
	  {
		InputSource src = new InputSource(f.toURI().toASCIIString());
		loadPatterns(src);
	  }

Same methods

HyphenationTree::loadPatterns ( InputSource source ) : void

Usage Example

 /// <summary>
 /// Create a hyphenator tree
 /// </summary>
 /// <param name="hyphenationSource"> the InputSource pointing to the XML grammar </param>
 /// <returns> An object representing the hyphenation patterns </returns>
 /// <exception cref="IOException"> If there is a low-level I/O error. </exception>
 public static HyphenationTree getHyphenationTree(InputSource hyphenationSource)
 {
     var tree = new HyphenationTree();
     tree.loadPatterns(hyphenationSource);
     return tree;
 }