Skip to content

Commit c7884f7

Browse files
committed
better documentation of HijriMonth
1 parent b2d1d93 commit c7884f7

File tree

1 file changed

+73
-1
lines changed

1 file changed

+73
-1
lines changed

base/src/main/java/net/time4j/calendar/HijriMonth.java

Lines changed: 73 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* -----------------------------------------------------------------------
3-
* Copyright © 2013-2017 Meno Hochschild, <http://www.menodata.de/>
3+
* Copyright © 2013-2021 Meno Hochschild, <http://www.menodata.de/>
44
* -----------------------------------------------------------------------
55
* This file (HijriMonth.java) is part of project Time4J.
66
*
@@ -47,28 +47,100 @@ public enum HijriMonth
4747

4848
//~ Statische Felder/Initialisierungen --------------------------------
4949

50+
/**
51+
* The first month of Hijri year.
52+
*/
53+
/*[deutsch]
54+
* Der erste Monat des Hijri-Jahres.
55+
*/
5056
MUHARRAM,
5157

58+
/**
59+
* The second month of Hijri year.
60+
*/
61+
/*[deutsch]
62+
* Der zweite Monat des Hijri-Jahres.
63+
*/
5264
SAFAR,
5365

66+
/**
67+
* The third month of Hijri year.
68+
*/
69+
/*[deutsch]
70+
* Der dritte Monat des Hijri-Jahres.
71+
*/
5472
RABI_I,
5573

74+
/**
75+
* The fourth month of Hijri year.
76+
*/
77+
/*[deutsch]
78+
* Der vierte Monat des Hijri-Jahres.
79+
*/
5680
RABI_II,
5781

82+
/**
83+
* The fifth month of Hijri year.
84+
*/
85+
/*[deutsch]
86+
* Der f&uuml;nfte Monat des Hijri-Jahres.
87+
*/
5888
JUMADA_I,
5989

90+
/**
91+
* The sixth month of Hijri year.
92+
*/
93+
/*[deutsch]
94+
* Der sechste Monat des Hijri-Jahres.
95+
*/
6096
JUMADA_II,
6197

98+
/**
99+
* The seventh month of Hijri year.
100+
*/
101+
/*[deutsch]
102+
* Der siebente Monat des Hijri-Jahres.
103+
*/
62104
RAJAB,
63105

106+
/**
107+
* The eigth month of Hijri year.
108+
*/
109+
/*[deutsch]
110+
* Der achte Monat des Hijri-Jahres.
111+
*/
64112
SHABAN,
65113

114+
/**
115+
* The nineth month of Hijri year.
116+
*/
117+
/*[deutsch]
118+
* Der neunte Monat des Hijri-Jahres.
119+
*/
66120
RAMADAN,
67121

122+
/**
123+
* The tenth month of Hijri year.
124+
*/
125+
/*[deutsch]
126+
* Der zehnte Monat des Hijri-Jahres.
127+
*/
68128
SHAWWAL,
69129

130+
/**
131+
* The eleventh month of Hijri year.
132+
*/
133+
/*[deutsch]
134+
* Der elfte Monat des Hijri-Jahres.
135+
*/
70136
DHU_AL_QIDAH,
71137

138+
/**
139+
* The twelfth and last month of Hijri year.
140+
*/
141+
/*[deutsch]
142+
* Der zw&ouml;lfte und letzte Monat des Hijri-Jahres.
143+
*/
72144
DHU_AL_HIJJAH;
73145

74146
private static final HijriMonth[] ENUMS = HijriMonth.values(); // Cache

0 commit comments

Comments
 (0)