List of usage examples for org.apache.lucene.analysis.ja.util ToStringUtil getRomanization
public static String getRomanization(String s)
From source file:com.github.riccardove.easyjasub.lucene.LuceneUtil.java
License:Apache License
/** * Romanize katakana with modified hepburn */ public static String katakanaToRomaji(String text) { return ToStringUtil.getRomanization(text); }