| java.lang.Object com.lowagie.text.pdf.hyphenation.Hyphenator
Hyphenator | public class Hyphenator (Code) | | This class is the main entry point to the hyphenation package.
You can use only the static methods or create an instance.
author: Carlos Villegas |
Method Summary | |
public static HyphenationTree | getFileHyphenationTree(String key) | public static String | getHyphenDir() Getter for property hyphenDir. | public static HyphenationTree | getHyphenationTree(String lang, String country) | public static HyphenationTree | getResourceHyphenationTree(String key) | public static Hyphenation | hyphenate(String lang, String country, String word, int leftMin, int rightMin) | public static Hyphenation | hyphenate(String lang, String country, char[] word, int offset, int len, int leftMin, int rightMin) | public Hyphenation | hyphenate(char[] word, int offset, int len) | public Hyphenation | hyphenate(String word) | public static void | setHyphenDir(String _hyphenDir) Setter for property hyphenDir. | public void | setLanguage(String lang, String country) | public void | setMinPushCharCount(int min) | public void | setMinRemainCharCount(int min) |
Hyphenator | public Hyphenator(String lang, String country, int leftMin, int rightMin)(Code) | | Parameters: lang - Parameters: country - Parameters: leftMin - Parameters: rightMin - |
getHyphenDir | public static String getHyphenDir()(Code) | | Getter for property hyphenDir.
Value of property hyphenDir. |
getResourceHyphenationTree | public static HyphenationTree getResourceHyphenationTree(String key)(Code) | | Parameters: key - a hyphenation tree |
hyphenate | public static Hyphenation hyphenate(String lang, String country, String word, int leftMin, int rightMin)(Code) | | Parameters: lang - Parameters: country - Parameters: word - Parameters: leftMin - Parameters: rightMin - a hyphenation object |
hyphenate | public static Hyphenation hyphenate(String lang, String country, char[] word, int offset, int len, int leftMin, int rightMin)(Code) | | Parameters: lang - Parameters: country - Parameters: word - Parameters: offset - Parameters: len - Parameters: leftMin - Parameters: rightMin - a hyphenation object |
hyphenate | public Hyphenation hyphenate(char[] word, int offset, int len)(Code) | | Parameters: word - Parameters: offset - Parameters: len - a hyphenation object |
setHyphenDir | public static void setHyphenDir(String _hyphenDir)(Code) | | Setter for property hyphenDir.
Parameters: _hyphenDir - New value of property hyphenDir. |
setLanguage | public void setLanguage(String lang, String country)(Code) | | Parameters: lang - Parameters: country - |
setMinPushCharCount | public void setMinPushCharCount(int min)(Code) | | Parameters: min - |
setMinRemainCharCount | public void setMinRemainCharCount(int min)(Code) | | Parameters: min - |
|
|