This commit is contained in:
Looly
2024-04-24 13:44:14 +08:00
parent 2fbb0f469c
commit 1c8afa79d7

View File

@@ -13,14 +13,15 @@
package org.dromara.hutool.core.date.chinese; package org.dromara.hutool.core.date.chinese;
/** /**
* 农历月份表示 * 农历月份表示<br>
* 规范参考:<a href="https://openstd.samr.gov.cn/bzgk/gb/newGbInfo?hcno=E107EA4DE9725EDF819F33C60A44B296">GB/T 33661-2017</a> 的6.2 农历月的命名法。
* *
* @author looly * @author looly
* @since 5.4.1 * @since 5.4.1
*/ */
public class ChineseMonth { public class ChineseMonth {
private static final String[] MONTH_NAME = {"", "", "", "", "", "", "", "", "", "", "十一", "十二"}; private static final String[] MONTH_NAME = {"", "", "", "", "", "", "", "", "", "", "十一", "十二"};
private static final String[] MONTH_NAME_TRADITIONAL = {"", "", "", "", "", "", "", "", "", "", "", ""}; private static final String[] MONTH_NAME_TRADITIONAL = {"", "", "", "", "", "", "", "", "", "", "", ""};
/** /**