MVN

com.github.jikyo : romaji

Maven & Gradle

May 15, 2019
4 stars

Romaji · `Romaji` is a converter library to romanize Japanese hiragana/katakana string by standard and IME typing style. Even though [icu::Transliterator](http://userguide.icu-project.org/transforms/general) already has provided the same functions, and returns only one romanized string. However, there exists several different romanization systems, so one hiragana/katakana string has so many romanize string. For example, `"ちゃ"` can be romanized as `"cha"`, `"tya"`, `"chixya"`, `"tixya"`, `"chilya"`, or `"tilya"`. `Romaji` provides romanized strings as many as possible. If an input string contained non hiragana/katakana characters (includes kanji), `Romaji` return the characters as same as the input. For example, `Romaji` converts the input `"お茶の水"` to `"o茶no水"`. The mapping from hiragana/katakana to romaji is based on common IME's system to type Japanese on a computer. Therefor, `Romaji` does not directly implement the standard system like Hepburn, Nihon-shiki or Kunrei-shiki, but includes them.

<dependency>
    <groupId>com.github.jikyo</groupId>
    <artifactId>romaji</artifactId>
    <version>0.0.4</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of com.github.jikyo : romaji to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 0.0.4

All Versions

Choose a version of com.github.jikyo : romaji to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
0.0.x
romaji-0.0.4
romaji-0.0.3

How to add a dependency to Maven

Add the following com.github.jikyo : romaji maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>com.github.jikyo</groupId>
    <artifactId>romaji</artifactId>
    <version>0.0.4</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following com.github.jikyo : romaji gradle dependency to your build.gradle file:

implementation 'com.github.jikyo:romaji:0.0.4'

Gradle Kotlin DSL: Add the following com.github.jikyo : romaji gradle kotlin dependency to your build.gradle.kts file:

implementation("com.github.jikyo:romaji:0.0.4")

How to add a dependency to SBT Scala

SBT Scala: Add the following com.github.jikyo : romaji sbt scala dependency to your build.sbt file:

libraryDependencies += "com.github.jikyo" % "romaji" % "0.0.4"