LocalDate.java
25.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
package org.joda.time;
import java.io.IOException;
import java.io.ObjectInputStream;
import java.io.ObjectOutputStream;
import java.io.Serializable;
import java.util.Calendar;
import java.util.Date;
import java.util.GregorianCalendar;
import java.util.HashSet;
import java.util.Locale;
import java.util.Set;
import java.util.TimeZone;
import org.joda.convert.FromString;
import org.joda.convert.ToString;
import org.joda.time.base.BaseLocal;
import org.joda.time.chrono.ISOChronology;
import org.joda.time.convert.ConverterManager;
import org.joda.time.convert.PartialConverter;
import org.joda.time.field.AbstractReadableInstantFieldProperty;
import org.joda.time.field.FieldUtils;
import org.joda.time.format.DateTimeFormat;
import org.joda.time.format.DateTimeFormatter;
import org.joda.time.format.ISODateTimeFormat;
public final class LocalDate
extends BaseLocal
implements Serializable, ReadablePartial
{
private static final Set<DurationFieldType> a;
private static final long serialVersionUID = -8775358157899L;
private final long b;
private final Chronology c;
private volatile transient int d;
static
{
HashSet localHashSet = new HashSet();
a = localHashSet;
localHashSet.add(DurationFieldType.days());
a.add(DurationFieldType.weeks());
a.add(DurationFieldType.months());
a.add(DurationFieldType.weekyears());
a.add(DurationFieldType.years());
a.add(DurationFieldType.centuries());
a.add(DurationFieldType.eras());
}
public LocalDate()
{
this(DateTimeUtils.currentTimeMillis(), ISOChronology.getInstance());
}
public LocalDate(int paramInt1, int paramInt2, int paramInt3)
{
this(paramInt1, paramInt2, paramInt3, ISOChronology.getInstanceUTC());
}
public LocalDate(int paramInt1, int paramInt2, int paramInt3, Chronology paramChronology)
{
paramChronology = DateTimeUtils.getChronology(paramChronology).withUTC();
long l = paramChronology.getDateTimeMillis(paramInt1, paramInt2, paramInt3, 0);
this.c = paramChronology;
this.b = l;
}
public LocalDate(long paramLong)
{
this(paramLong, ISOChronology.getInstance());
}
public LocalDate(long paramLong, Chronology paramChronology)
{
paramChronology = DateTimeUtils.getChronology(paramChronology);
paramLong = paramChronology.getZone().getMillisKeepLocal(DateTimeZone.UTC, paramLong);
paramChronology = paramChronology.withUTC();
this.b = paramChronology.dayOfMonth().roundFloor(paramLong);
this.c = paramChronology;
}
public LocalDate(long paramLong, DateTimeZone paramDateTimeZone)
{
this(paramLong, ISOChronology.getInstance(paramDateTimeZone));
}
public LocalDate(Object paramObject)
{
this(paramObject, null);
}
public LocalDate(Object paramObject, Chronology paramChronology)
{
PartialConverter localPartialConverter = ConverterManager.getInstance().getPartialConverter(paramObject);
paramChronology = DateTimeUtils.getChronology(localPartialConverter.getChronology(paramObject, paramChronology));
this.c = paramChronology.withUTC();
paramObject = localPartialConverter.getPartialValues(this, paramObject, paramChronology, ISODateTimeFormat.localDateParser());
this.b = this.c.getDateTimeMillis(paramObject[0], paramObject[1], paramObject[2], 0);
}
public LocalDate(Object paramObject, DateTimeZone paramDateTimeZone)
{
PartialConverter localPartialConverter = ConverterManager.getInstance().getPartialConverter(paramObject);
paramDateTimeZone = DateTimeUtils.getChronology(localPartialConverter.getChronology(paramObject, paramDateTimeZone));
this.c = paramDateTimeZone.withUTC();
paramObject = localPartialConverter.getPartialValues(this, paramObject, paramDateTimeZone, ISODateTimeFormat.localDateParser());
this.b = this.c.getDateTimeMillis(paramObject[0], paramObject[1], paramObject[2], 0);
}
public LocalDate(Chronology paramChronology)
{
this(DateTimeUtils.currentTimeMillis(), paramChronology);
}
public LocalDate(DateTimeZone paramDateTimeZone)
{
this(DateTimeUtils.currentTimeMillis(), ISOChronology.getInstance(paramDateTimeZone));
}
public static LocalDate fromCalendarFields(Calendar paramCalendar)
{
if (paramCalendar == null) {
throw new IllegalArgumentException("The calendar must not be null");
}
int j = paramCalendar.get(0);
int i = paramCalendar.get(1);
if (j == 1) {}
for (;;)
{
return new LocalDate(i, paramCalendar.get(2) + 1, paramCalendar.get(5));
i = 1 - i;
}
}
public static LocalDate fromDateFields(Date paramDate)
{
if (paramDate == null) {
throw new IllegalArgumentException("The date must not be null");
}
if (paramDate.getTime() < 0L)
{
GregorianCalendar localGregorianCalendar = new GregorianCalendar();
localGregorianCalendar.setTime(paramDate);
return fromCalendarFields(localGregorianCalendar);
}
return new LocalDate(paramDate.getYear() + 1900, paramDate.getMonth() + 1, paramDate.getDate());
}
public static LocalDate now()
{
return new LocalDate();
}
public static LocalDate now(Chronology paramChronology)
{
if (paramChronology == null) {
throw new NullPointerException("Chronology must not be null");
}
return new LocalDate(paramChronology);
}
public static LocalDate now(DateTimeZone paramDateTimeZone)
{
if (paramDateTimeZone == null) {
throw new NullPointerException("Zone must not be null");
}
return new LocalDate(paramDateTimeZone);
}
@FromString
public static LocalDate parse(String paramString)
{
return parse(paramString, ISODateTimeFormat.localDateParser());
}
public static LocalDate parse(String paramString, DateTimeFormatter paramDateTimeFormatter)
{
return paramDateTimeFormatter.parseLocalDate(paramString);
}
private Object readResolve()
{
LocalDate localLocalDate;
if (this.c == null) {
localLocalDate = new LocalDate(this.b, ISOChronology.getInstanceUTC());
}
do
{
return localLocalDate;
localLocalDate = this;
} while (DateTimeZone.UTC.equals(this.c.getZone()));
return new LocalDate(this.b, this.c.withUTC());
}
final LocalDate a(long paramLong)
{
paramLong = this.c.dayOfMonth().roundFloor(paramLong);
if (paramLong == getLocalMillis()) {
return this;
}
return new LocalDate(paramLong, getChronology());
}
public final Property centuryOfEra()
{
return new Property(this, getChronology().centuryOfEra());
}
public final int compareTo(ReadablePartial paramReadablePartial)
{
if (this == paramReadablePartial) {
return 0;
}
if ((paramReadablePartial instanceof LocalDate))
{
LocalDate localLocalDate = (LocalDate)paramReadablePartial;
if (this.c.equals(localLocalDate.c))
{
if (this.b < localLocalDate.b) {
return -1;
}
if (this.b == localLocalDate.b) {
return 0;
}
return 1;
}
}
return super.compareTo(paramReadablePartial);
}
public final Property dayOfMonth()
{
return new Property(this, getChronology().dayOfMonth());
}
public final Property dayOfWeek()
{
return new Property(this, getChronology().dayOfWeek());
}
public final Property dayOfYear()
{
return new Property(this, getChronology().dayOfYear());
}
public final boolean equals(Object paramObject)
{
if (this == paramObject) {
return true;
}
if ((paramObject instanceof LocalDate))
{
LocalDate localLocalDate = (LocalDate)paramObject;
if (this.c.equals(localLocalDate.c)) {
return this.b == localLocalDate.b;
}
}
return super.equals(paramObject);
}
public final Property era()
{
return new Property(this, getChronology().era());
}
public final int get(DateTimeFieldType paramDateTimeFieldType)
{
if (paramDateTimeFieldType == null) {
throw new IllegalArgumentException("The DateTimeFieldType must not be null");
}
if (!isSupported(paramDateTimeFieldType)) {
throw new IllegalArgumentException("Field '" + paramDateTimeFieldType + "' is not supported");
}
return paramDateTimeFieldType.getField(getChronology()).get(getLocalMillis());
}
public final int getCenturyOfEra()
{
return getChronology().centuryOfEra().get(getLocalMillis());
}
public final Chronology getChronology()
{
return this.c;
}
public final int getDayOfMonth()
{
return getChronology().dayOfMonth().get(getLocalMillis());
}
public final int getDayOfWeek()
{
return getChronology().dayOfWeek().get(getLocalMillis());
}
public final int getDayOfYear()
{
return getChronology().dayOfYear().get(getLocalMillis());
}
public final int getEra()
{
return getChronology().era().get(getLocalMillis());
}
protected final DateTimeField getField(int paramInt, Chronology paramChronology)
{
switch (paramInt)
{
default:
throw new IndexOutOfBoundsException("Invalid index: " + paramInt);
case 0:
return paramChronology.year();
case 1:
return paramChronology.monthOfYear();
}
return paramChronology.dayOfMonth();
}
protected final long getLocalMillis()
{
return this.b;
}
public final int getMonthOfYear()
{
return getChronology().monthOfYear().get(getLocalMillis());
}
public final int getValue(int paramInt)
{
switch (paramInt)
{
default:
throw new IndexOutOfBoundsException("Invalid index: " + paramInt);
case 0:
return getChronology().year().get(getLocalMillis());
case 1:
return getChronology().monthOfYear().get(getLocalMillis());
}
return getChronology().dayOfMonth().get(getLocalMillis());
}
public final int getWeekOfWeekyear()
{
return getChronology().weekOfWeekyear().get(getLocalMillis());
}
public final int getWeekyear()
{
return getChronology().weekyear().get(getLocalMillis());
}
public final int getYear()
{
return getChronology().year().get(getLocalMillis());
}
public final int getYearOfCentury()
{
return getChronology().yearOfCentury().get(getLocalMillis());
}
public final int getYearOfEra()
{
return getChronology().yearOfEra().get(getLocalMillis());
}
public final int hashCode()
{
int j = this.d;
int i = j;
if (j == 0)
{
i = super.hashCode();
this.d = i;
}
return i;
}
public final boolean isSupported(DateTimeFieldType paramDateTimeFieldType)
{
if (paramDateTimeFieldType == null) {}
DurationFieldType localDurationFieldType;
do
{
return false;
localDurationFieldType = paramDateTimeFieldType.getDurationType();
} while ((!a.contains(localDurationFieldType)) && (localDurationFieldType.getField(getChronology()).getUnitMillis() < getChronology().days().getUnitMillis()));
return paramDateTimeFieldType.getField(getChronology()).isSupported();
}
public final boolean isSupported(DurationFieldType paramDurationFieldType)
{
if (paramDurationFieldType == null) {}
DurationField localDurationField;
do
{
return false;
localDurationField = paramDurationFieldType.getField(getChronology());
} while ((!a.contains(paramDurationFieldType)) && (localDurationField.getUnitMillis() < getChronology().days().getUnitMillis()));
return localDurationField.isSupported();
}
public final LocalDate minus(ReadablePeriod paramReadablePeriod)
{
return withPeriodAdded(paramReadablePeriod, -1);
}
public final LocalDate minusDays(int paramInt)
{
if (paramInt == 0) {
return this;
}
return a(getChronology().days().subtract(getLocalMillis(), paramInt));
}
public final LocalDate minusMonths(int paramInt)
{
if (paramInt == 0) {
return this;
}
return a(getChronology().months().subtract(getLocalMillis(), paramInt));
}
public final LocalDate minusWeeks(int paramInt)
{
if (paramInt == 0) {
return this;
}
return a(getChronology().weeks().subtract(getLocalMillis(), paramInt));
}
public final LocalDate minusYears(int paramInt)
{
if (paramInt == 0) {
return this;
}
return a(getChronology().years().subtract(getLocalMillis(), paramInt));
}
public final Property monthOfYear()
{
return new Property(this, getChronology().monthOfYear());
}
public final LocalDate plus(ReadablePeriod paramReadablePeriod)
{
return withPeriodAdded(paramReadablePeriod, 1);
}
public final LocalDate plusDays(int paramInt)
{
if (paramInt == 0) {
return this;
}
return a(getChronology().days().add(getLocalMillis(), paramInt));
}
public final LocalDate plusMonths(int paramInt)
{
if (paramInt == 0) {
return this;
}
return a(getChronology().months().add(getLocalMillis(), paramInt));
}
public final LocalDate plusWeeks(int paramInt)
{
if (paramInt == 0) {
return this;
}
return a(getChronology().weeks().add(getLocalMillis(), paramInt));
}
public final LocalDate plusYears(int paramInt)
{
if (paramInt == 0) {
return this;
}
return a(getChronology().years().add(getLocalMillis(), paramInt));
}
public final Property property(DateTimeFieldType paramDateTimeFieldType)
{
if (paramDateTimeFieldType == null) {
throw new IllegalArgumentException("The DateTimeFieldType must not be null");
}
if (!isSupported(paramDateTimeFieldType)) {
throw new IllegalArgumentException("Field '" + paramDateTimeFieldType + "' is not supported");
}
return new Property(this, paramDateTimeFieldType.getField(getChronology()));
}
public final int size()
{
return 3;
}
public final Date toDate()
{
int i = getDayOfMonth();
Date localDate1 = new Date(getYear() - 1900, getMonthOfYear() - 1, i);
Object localObject = fromDateFields(localDate1);
if (((LocalDate)localObject).isBefore(this))
{
while (!((LocalDate)localObject).equals(this))
{
localDate1.setTime(localDate1.getTime() + 3600000L);
localObject = fromDateFields(localDate1);
}
while (localDate1.getDate() == i) {
localDate1.setTime(localDate1.getTime() - 1000L);
}
localDate1.setTime(localDate1.getTime() + 1000L);
localObject = localDate1;
}
Date localDate2;
do
{
return (Date)localObject;
if (!((LocalDate)localObject).equals(this)) {
break;
}
localDate2 = new Date(localDate1.getTime() - TimeZone.getDefault().getDSTSavings());
localObject = localDate2;
} while (localDate2.getDate() == i);
return localDate1;
}
public final DateMidnight toDateMidnight()
{
return toDateMidnight(null);
}
public final DateMidnight toDateMidnight(DateTimeZone paramDateTimeZone)
{
paramDateTimeZone = DateTimeUtils.getZone(paramDateTimeZone);
paramDateTimeZone = getChronology().withZone(paramDateTimeZone);
return new DateMidnight(getYear(), getMonthOfYear(), getDayOfMonth(), paramDateTimeZone);
}
public final DateTime toDateTime(LocalTime paramLocalTime)
{
return toDateTime(paramLocalTime, null);
}
public final DateTime toDateTime(LocalTime paramLocalTime, DateTimeZone paramDateTimeZone)
{
if ((paramLocalTime != null) && (getChronology() != paramLocalTime.getChronology())) {
throw new IllegalArgumentException("The chronology of the time does not match");
}
paramDateTimeZone = getChronology().withZone(paramDateTimeZone);
long l2 = paramDateTimeZone.set(this, DateTimeUtils.currentTimeMillis());
long l1 = l2;
if (paramLocalTime != null) {
l1 = paramDateTimeZone.set(paramLocalTime, l2);
}
return new DateTime(l1, paramDateTimeZone);
}
public final DateTime toDateTimeAtCurrentTime()
{
return toDateTimeAtCurrentTime(null);
}
public final DateTime toDateTimeAtCurrentTime(DateTimeZone paramDateTimeZone)
{
paramDateTimeZone = DateTimeUtils.getZone(paramDateTimeZone);
paramDateTimeZone = getChronology().withZone(paramDateTimeZone);
return new DateTime(paramDateTimeZone.set(this, DateTimeUtils.currentTimeMillis()), paramDateTimeZone);
}
@Deprecated
public final DateTime toDateTimeAtMidnight()
{
return toDateTimeAtMidnight(null);
}
@Deprecated
public final DateTime toDateTimeAtMidnight(DateTimeZone paramDateTimeZone)
{
paramDateTimeZone = DateTimeUtils.getZone(paramDateTimeZone);
paramDateTimeZone = getChronology().withZone(paramDateTimeZone);
return new DateTime(getYear(), getMonthOfYear(), getDayOfMonth(), 0, 0, 0, 0, paramDateTimeZone);
}
public final DateTime toDateTimeAtStartOfDay()
{
return toDateTimeAtStartOfDay(null);
}
public final DateTime toDateTimeAtStartOfDay(DateTimeZone paramDateTimeZone)
{
paramDateTimeZone = DateTimeUtils.getZone(paramDateTimeZone);
Chronology localChronology = getChronology().withZone(paramDateTimeZone);
long l = paramDateTimeZone.convertLocalToUTC(getLocalMillis() + 21600000L, false);
return new DateTime(localChronology.dayOfMonth().roundFloor(l), localChronology);
}
public final Interval toInterval()
{
return toInterval(null);
}
public final Interval toInterval(DateTimeZone paramDateTimeZone)
{
paramDateTimeZone = DateTimeUtils.getZone(paramDateTimeZone);
return new Interval(toDateTimeAtStartOfDay(paramDateTimeZone), plusDays(1).toDateTimeAtStartOfDay(paramDateTimeZone));
}
public final LocalDateTime toLocalDateTime(LocalTime paramLocalTime)
{
if (paramLocalTime == null) {
throw new IllegalArgumentException("The time must not be null");
}
if (getChronology() != paramLocalTime.getChronology()) {
throw new IllegalArgumentException("The chronology of the time does not match");
}
return new LocalDateTime(getLocalMillis() + paramLocalTime.getLocalMillis(), getChronology());
}
@ToString
public final String toString()
{
return ISODateTimeFormat.date().print(this);
}
public final String toString(String paramString)
{
if (paramString == null) {
return toString();
}
return DateTimeFormat.forPattern(paramString).print(this);
}
public final String toString(String paramString, Locale paramLocale)
throws IllegalArgumentException
{
if (paramString == null) {
return toString();
}
return DateTimeFormat.forPattern(paramString).withLocale(paramLocale).print(this);
}
public final Property weekOfWeekyear()
{
return new Property(this, getChronology().weekOfWeekyear());
}
public final Property weekyear()
{
return new Property(this, getChronology().weekyear());
}
public final LocalDate withCenturyOfEra(int paramInt)
{
return a(getChronology().centuryOfEra().set(getLocalMillis(), paramInt));
}
public final LocalDate withDayOfMonth(int paramInt)
{
return a(getChronology().dayOfMonth().set(getLocalMillis(), paramInt));
}
public final LocalDate withDayOfWeek(int paramInt)
{
return a(getChronology().dayOfWeek().set(getLocalMillis(), paramInt));
}
public final LocalDate withDayOfYear(int paramInt)
{
return a(getChronology().dayOfYear().set(getLocalMillis(), paramInt));
}
public final LocalDate withEra(int paramInt)
{
return a(getChronology().era().set(getLocalMillis(), paramInt));
}
public final LocalDate withField(DateTimeFieldType paramDateTimeFieldType, int paramInt)
{
if (paramDateTimeFieldType == null) {
throw new IllegalArgumentException("Field must not be null");
}
if (!isSupported(paramDateTimeFieldType)) {
throw new IllegalArgumentException("Field '" + paramDateTimeFieldType + "' is not supported");
}
return a(paramDateTimeFieldType.getField(getChronology()).set(getLocalMillis(), paramInt));
}
public final LocalDate withFieldAdded(DurationFieldType paramDurationFieldType, int paramInt)
{
if (paramDurationFieldType == null) {
throw new IllegalArgumentException("Field must not be null");
}
if (!isSupported(paramDurationFieldType)) {
throw new IllegalArgumentException("Field '" + paramDurationFieldType + "' is not supported");
}
if (paramInt == 0) {
return this;
}
return a(paramDurationFieldType.getField(getChronology()).add(getLocalMillis(), paramInt));
}
public final LocalDate withFields(ReadablePartial paramReadablePartial)
{
if (paramReadablePartial == null) {
return this;
}
return a(getChronology().set(paramReadablePartial, getLocalMillis()));
}
public final LocalDate withMonthOfYear(int paramInt)
{
return a(getChronology().monthOfYear().set(getLocalMillis(), paramInt));
}
public final LocalDate withPeriodAdded(ReadablePeriod paramReadablePeriod, int paramInt)
{
if ((paramReadablePeriod == null) || (paramInt == 0)) {
return this;
}
long l1 = getLocalMillis();
Chronology localChronology = getChronology();
int i = 0;
while (i < paramReadablePeriod.size())
{
long l3 = FieldUtils.safeMultiply(paramReadablePeriod.getValue(i), paramInt);
DurationFieldType localDurationFieldType = paramReadablePeriod.getFieldType(i);
long l2 = l1;
if (isSupported(localDurationFieldType)) {
l2 = localDurationFieldType.getField(localChronology).add(l1, l3);
}
i += 1;
l1 = l2;
}
return a(l1);
}
public final LocalDate withWeekOfWeekyear(int paramInt)
{
return a(getChronology().weekOfWeekyear().set(getLocalMillis(), paramInt));
}
public final LocalDate withWeekyear(int paramInt)
{
return a(getChronology().weekyear().set(getLocalMillis(), paramInt));
}
public final LocalDate withYear(int paramInt)
{
return a(getChronology().year().set(getLocalMillis(), paramInt));
}
public final LocalDate withYearOfCentury(int paramInt)
{
return a(getChronology().yearOfCentury().set(getLocalMillis(), paramInt));
}
public final LocalDate withYearOfEra(int paramInt)
{
return a(getChronology().yearOfEra().set(getLocalMillis(), paramInt));
}
public final Property year()
{
return new Property(this, getChronology().year());
}
public final Property yearOfCentury()
{
return new Property(this, getChronology().yearOfCentury());
}
public final Property yearOfEra()
{
return new Property(this, getChronology().yearOfEra());
}
public static final class Property
extends AbstractReadableInstantFieldProperty
{
private static final long serialVersionUID = -3193829732634L;
private transient LocalDate a;
private transient DateTimeField b;
Property(LocalDate paramLocalDate, DateTimeField paramDateTimeField)
{
this.a = paramLocalDate;
this.b = paramDateTimeField;
}
private void readObject(ObjectInputStream paramObjectInputStream)
throws IOException, ClassNotFoundException
{
this.a = ((LocalDate)paramObjectInputStream.readObject());
this.b = ((DateTimeFieldType)paramObjectInputStream.readObject()).getField(this.a.getChronology());
}
private void writeObject(ObjectOutputStream paramObjectOutputStream)
throws IOException
{
paramObjectOutputStream.writeObject(this.a);
paramObjectOutputStream.writeObject(this.b.getType());
}
public final LocalDate addToCopy(int paramInt)
{
return this.a.a(this.b.add(this.a.getLocalMillis(), paramInt));
}
public final LocalDate addWrapFieldToCopy(int paramInt)
{
return this.a.a(this.b.addWrapField(this.a.getLocalMillis(), paramInt));
}
protected final Chronology getChronology()
{
return this.a.getChronology();
}
public final DateTimeField getField()
{
return this.b;
}
public final LocalDate getLocalDate()
{
return this.a;
}
protected final long getMillis()
{
return this.a.getLocalMillis();
}
public final LocalDate roundCeilingCopy()
{
return this.a.a(this.b.roundCeiling(this.a.getLocalMillis()));
}
public final LocalDate roundFloorCopy()
{
return this.a.a(this.b.roundFloor(this.a.getLocalMillis()));
}
public final LocalDate roundHalfCeilingCopy()
{
return this.a.a(this.b.roundHalfCeiling(this.a.getLocalMillis()));
}
public final LocalDate roundHalfEvenCopy()
{
return this.a.a(this.b.roundHalfEven(this.a.getLocalMillis()));
}
public final LocalDate roundHalfFloorCopy()
{
return this.a.a(this.b.roundHalfFloor(this.a.getLocalMillis()));
}
public final LocalDate setCopy(int paramInt)
{
return this.a.a(this.b.set(this.a.getLocalMillis(), paramInt));
}
public final LocalDate setCopy(String paramString)
{
return setCopy(paramString, null);
}
public final LocalDate setCopy(String paramString, Locale paramLocale)
{
return this.a.a(this.b.set(this.a.getLocalMillis(), paramString, paramLocale));
}
public final LocalDate withMaximumValue()
{
return setCopy(getMaximumValue());
}
public final LocalDate withMinimumValue()
{
return setCopy(getMinimumValue());
}
}
}
/* Location: /home/merong/decompile/hackery-dex2jar.jar!/org/joda/time/LocalDate.class
* Java compiler version: 6 (50.0)
* JD-Core Version: 0.7.1
*/