@@ -323,29 +323,6 @@ public enum ChronoField implements DateTimeField {
323
323
* field in the same way, but using the alternate week length.
324
324
*/
325
325
ALIGNED_WEEK_OF_MONTH ("AlignedWeekOfMonth" , WEEKS , MONTHS , DateTimeValueRange .of (1 , 4 , 5 )),
326
- /**
327
- * The week within a month.
328
- * <p>
329
- * This represents concept of the count of weeks within the month where weeks
330
- * start on a fixed day-of-week, such as Monday.
331
- * This field is typically used with {@link #DAY_OF_WEEK}.
332
- * <p>
333
- * In the default ISO calendar system, the week starts on Monday and there must be at
334
- * least 4 days in the first week.
335
- * Week one is the week starting on a Monday where there are at least 4 days in the month.
336
- * Thus, week one may start up to three days before the start of the month.
337
- * If the first week starts after the start of the month then the period before is week zero.
338
- * <p>
339
- * For example:<br />
340
- * - if the 1st day of the month is a Monday, week one starts on the 1st and there is no week zero<br />
341
- * - if the 2nd day of the month is a Monday, week one starts on the 2nd and the 1st is in week zero<br />
342
- * - if the 4th day of the month is a Monday, week one starts on the 4th and the 1st to 3rd is in week zero<br />
343
- * - if the 5th day of the month is a Monday, week two starts on the 5th and the 1st to 4th is in week one<br />
344
- * <p>
345
- * Non-ISO calendar systems should implement this field in the same way, taking
346
- * into account any differences in week or month length.
347
- */
348
- WEEK_OF_MONTH ("WeekOfMonth" , WEEKS , MONTHS , DateTimeValueRange .of (0 , 1 , 4 , 5 )),
349
326
/**
350
327
* The aligned week within a year.
351
328
* <p>
@@ -362,29 +339,6 @@ public enum ChronoField implements DateTimeField {
362
339
* field in the same way, but using the alternate week length.
363
340
*/
364
341
ALIGNED_WEEK_OF_YEAR ("AlignedWeekOfYear" , WEEKS , YEARS , DateTimeValueRange .of (1 , 53 )),
365
- /**
366
- * The week within a year.
367
- * <p>
368
- * This represents concept of the count of weeks within the year where weeks
369
- * start on a fixed day-of-week, such as Monday.
370
- * This field is typically used with {@link #DAY_OF_WEEK}.
371
- * <p>
372
- * In the default ISO calendar system, the week starts on Monday and there must be at
373
- * least 4 days in the first week.
374
- * Week one is the week starting on a Monday where there are at least 4 days in the year.
375
- * Thus, week one may start up to three days before the start of the year.
376
- * If the first week starts after the start of the year then the period before is week zero.
377
- * <p>
378
- * For example:<br />
379
- * - if the 1st day of the year is a Monday, week one starts on the 1st and there is no week zero<br />
380
- * - if the 2nd day of the year is a Monday, week one starts on the 2nd and the 1st is in week zero<br />
381
- * - if the 4th day of the year is a Monday, week one starts on the 4th and the 1st to 3rd is in week zero<br />
382
- * - if the 5th day of the year is a Monday, week two starts on the 5th and the 1st to 4th is in week one<br />
383
- * <p>
384
- * Non-ISO calendar systems should implement this field in the same way, taking
385
- * into account any differences in week or year length.
386
- */
387
- WEEK_OF_YEAR ("WeekOfYear" , WEEKS , YEARS , DateTimeValueRange .of (0 , 1 , 52 , 53 )),
388
342
/**
389
343
* The month-of-year, such as March.
390
344
* <p>
0 commit comments