Interface Transliteration<T>
-
- Type Parameters:
T- is a type parameter
public interface Transliteration<T>This interface contains method that perform transliteration based on language code provided.- Since:
- 1.0.0
- Author:
- Ritesh Sinha
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Stringtransliterate(T fromLanguage, T toLanguage, String text)This method perform transliteration based on language code provided.
-
-
-
Method Detail
-
transliterate
String transliterate(T fromLanguage, T toLanguage, String text)
This method perform transliteration based on language code provided.- Parameters:
fromLanguage- the input language code.toLanguage- the output language code.text- the string to be transliterated.- Returns:
- the transliterated string.
-
-