Skip to content

Commit

Permalink
Code: gradlew spotlessApply
Browse files Browse the repository at this point in the history
  • Loading branch information
sevenc-nanashi committed Sep 14, 2023
1 parent fb00418 commit 3bd192c
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,7 @@ protected void finalize() throws Throwable {
/**
* ユーザー辞書を設定する。
*
* <p>
* この関数を呼び出した後にユーザー辞書を変更した場合は、再度この関数を呼ぶ必要がある。
* <p>この関数を呼び出した後にユーザー辞書を変更した場合は、再度この関数を呼ぶ必要がある。
*
* @param userDict ユーザー辞書。
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public boolean isLoadedVoiceModel(String voiceModelId) {
/**
* {@link AudioQuery} を生成するためのオブジェクトを生成する。
*
* @param text テキスト。
* @param text テキスト。
* @param styleId スタイルID。
* @return {@link CreateAudioQueryConfigurator}。
* @see CreateAudioQueryConfigurator#execute
Expand All @@ -67,7 +67,7 @@ public CreateAudioQueryConfigurator createAudioQuery(String text, int styleId) {
/**
* {@link AccentPhrase} のリストを生成するためのオブジェクトを生成する。
*
* @param text テキスト。
* @param text テキスト。
* @param styleId スタイルID。
* @return {@link CreateAccentPhrasesConfigurator}。
* @see CreateAccentPhrasesConfigurator#execute
Expand All @@ -81,7 +81,7 @@ public CreateAccentPhrasesConfigurator createAccentPhrases(String text, int styl
* アクセント句の音高・音素長を変更する。
*
* @param accentPhrases 変更元のアクセント句の配列。
* @param styleId スタイルID。
* @param styleId スタイルID。
* @return 変更後のアクセント句の配列。
*/
@Nonnull
Expand All @@ -99,7 +99,7 @@ public List<AccentPhrase> replaceMoraData(List<AccentPhrase> accentPhrases, int
* アクセント句の音素長を変更する。
*
* @param accentPhrases 変更元のアクセント句の配列。
* @param styleId スタイルID。
* @param styleId スタイルID。
* @return 変更後のアクセント句の配列。
*/
@Nonnull
Expand All @@ -117,7 +117,7 @@ public List<AccentPhrase> replacePhonemeLength(List<AccentPhrase> accentPhrases,
* アクセント句の音高を変更する。
*
* @param accentPhrases 変更元のアクセント句の配列。
* @param styleId スタイルID。
* @param styleId スタイルID。
* @return 変更後のアクセント句の配列。
*/
@Nonnull
Expand All @@ -135,7 +135,7 @@ public List<AccentPhrase> replaceMoraPitch(List<AccentPhrase> accentPhrases, int
* {@link AudioQuery} から音声合成するためのオブジェクトを生成する。
*
* @param audioQuery {@link AudioQuery}。
* @param styleId スタイルID。
* @param styleId スタイルID。
* @return {@link SynthesisConfigurator}。
* @see SynthesisConfigurator#execute
*/
Expand All @@ -147,7 +147,7 @@ public SynthesisConfigurator synthesis(AudioQuery audioQuery, int styleId) {
/**
* テキスト音声合成を実行するためのオブジェクトを生成する。
*
* @param text テキスト。
* @param text テキスト。
* @param styleId スタイルID。
* @return {@link TtsConfigurator}。
* @see TtsConfigurator#execute
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ public static class Word {
/**
* UserDict.Wordを作成する。
*
* @param surface 言葉の表層形。
* @param surface 言葉の表層形。
* @param pronunciation 言葉の発音。
* @throws IllegalArgumentException pronunciationが不正な場合。
*/
Expand Down

0 comments on commit 3bd192c

Please sign in to comment.