com.seejoke.pinyin.ISpellConverter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of core-tools Show documentation
Show all versions of core-tools Show documentation
提供java常用的、流行的工具方法,减少项目冗余代码
package com.seejoke.pinyin;
/**
* @auther: [email protected]
* @date: 2018/5/3 17:44
* @description:
*/
public interface ISpellConverter {
String[] getPinyin(char ch) throws IllegalPinyinException;
String getPinyin(String chinese) throws IllegalPinyinException;
}