List of usage examples for org.apache.lucene.analysis.ja.util ToStringUtil getRomanization
public static void getRomanization(Appendable builder, CharSequence s) throws IOException
From source file:com.github.riccardove.easyjasub.lucene.LuceneUtil.java
License:Apache License
/** * Romanize katakana with modified hepburn * //from www.j a va 2s . c om * @throws IOException */ public static void katakanaToRomaji(Appendable builder, CharSequence s) throws IOException { ToStringUtil.getRomanization(builder, s); }