mirror of
https://gitee.com/dromara/hutool.git
synced 2025-04-05 08:37:26 +08:00
add version
This commit is contained in:
parent
150f8930d0
commit
1c3e8634c8
@ -27,6 +27,7 @@ public interface PinyinEngine {
|
|||||||
* @param c 任意字符,汉字返回拼音,非汉字原样返回
|
* @param c 任意字符,汉字返回拼音,非汉字原样返回
|
||||||
* @param tone 是否返回声调
|
* @param tone 是否返回声调
|
||||||
* @return 汉字返回拼音,非汉字原样返回
|
* @return 汉字返回拼音,非汉字原样返回
|
||||||
|
* @since 5.8.37
|
||||||
*/
|
*/
|
||||||
default String getPinyin(char c, boolean tone){
|
default String getPinyin(char c, boolean tone){
|
||||||
return getPinyin(c);
|
return getPinyin(c);
|
||||||
@ -48,6 +49,7 @@ public interface PinyinEngine {
|
|||||||
* @param separator 拼音之间的分隔符
|
* @param separator 拼音之间的分隔符
|
||||||
* @param tone 是否返回声调
|
* @param tone 是否返回声调
|
||||||
* @return 拼音
|
* @return 拼音
|
||||||
|
* @since 5.8.37
|
||||||
*/
|
*/
|
||||||
default String getPinyin(String str, String separator,boolean tone){
|
default String getPinyin(String str, String separator,boolean tone){
|
||||||
return getPinyin(str, separator);
|
return getPinyin(str, separator);
|
||||||
|
Loading…
Reference in New Issue
Block a user