Example usage for org.apache.lucene.analysis.ja.util ToStringUtil getRomanization

List of usage examples for org.apache.lucene.analysis.ja.util ToStringUtil getRomanization

Introduction

In this page you can find the example usage for org.apache.lucene.analysis.ja.util ToStringUtil getRomanization.

Prototype



public static void getRomanization(Appendable builder, CharSequence s) throws IOException 

Source Link

Document

Romanize katakana with modified hepburn

Usage

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);
}