![JAR search and dependency download from the Maven repository](/logo.png)
com.taotao.boot.pinyin.spi.IPinyinData Maven / Gradle / Ivy
/*
* Copyright (c) 2020-2030, Shuigedeng ([email protected] & https://blog.taotaocloud.top/).
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.taotao.boot.pinyin.spi;
/** 声母韵母 */
public interface IPinyinData {
/**
* 获取声母
*
* @param pinyinNormal 拼音
* @return 声母
* @see #isZeroShengMu(String)
*/
String shengMu(final String pinyinNormal);
/**
* 获取韵母
*
* @param pinyinNormal 拼音
* @return 韵母
*/
String yunMu(final String pinyinNormal);
/**
* 零声母
*
* @param pinyinNormal 拼音
* @return 是否
*/
boolean isZeroShengMu(final String pinyinNormal);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy