LocalDateTime.java
26.8 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
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
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.Locale;
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.format.DateTimeFormat;
import org.joda.time.format.DateTimeFormatter;
import org.joda.time.format.ISODateTimeFormat;
public final class LocalDateTime
extends BaseLocal
implements Serializable, ReadablePartial
{
private static final long serialVersionUID = -268716875315837168L;
private final long a;
private final Chronology b;
public LocalDateTime()
{
this(DateTimeUtils.currentTimeMillis(), ISOChronology.getInstance());
}
public LocalDateTime(int paramInt1, int paramInt2, int paramInt3, int paramInt4, int paramInt5)
{
this(paramInt1, paramInt2, paramInt3, paramInt4, paramInt5, 0, 0, ISOChronology.getInstanceUTC());
}
public LocalDateTime(int paramInt1, int paramInt2, int paramInt3, int paramInt4, int paramInt5, int paramInt6)
{
this(paramInt1, paramInt2, paramInt3, paramInt4, paramInt5, paramInt6, 0, ISOChronology.getInstanceUTC());
}
public LocalDateTime(int paramInt1, int paramInt2, int paramInt3, int paramInt4, int paramInt5, int paramInt6, int paramInt7)
{
this(paramInt1, paramInt2, paramInt3, paramInt4, paramInt5, paramInt6, paramInt7, ISOChronology.getInstanceUTC());
}
public LocalDateTime(int paramInt1, int paramInt2, int paramInt3, int paramInt4, int paramInt5, int paramInt6, int paramInt7, Chronology paramChronology)
{
paramChronology = DateTimeUtils.getChronology(paramChronology).withUTC();
long l = paramChronology.getDateTimeMillis(paramInt1, paramInt2, paramInt3, paramInt4, paramInt5, paramInt6, paramInt7);
this.b = paramChronology;
this.a = l;
}
public LocalDateTime(long paramLong)
{
this(paramLong, ISOChronology.getInstance());
}
public LocalDateTime(long paramLong, Chronology paramChronology)
{
paramChronology = DateTimeUtils.getChronology(paramChronology);
this.a = paramChronology.getZone().getMillisKeepLocal(DateTimeZone.UTC, paramLong);
this.b = paramChronology.withUTC();
}
public LocalDateTime(long paramLong, DateTimeZone paramDateTimeZone)
{
this(paramLong, ISOChronology.getInstance(paramDateTimeZone));
}
public LocalDateTime(Object paramObject)
{
this(paramObject, null);
}
public LocalDateTime(Object paramObject, Chronology paramChronology)
{
PartialConverter localPartialConverter = ConverterManager.getInstance().getPartialConverter(paramObject);
paramChronology = DateTimeUtils.getChronology(localPartialConverter.getChronology(paramObject, paramChronology));
this.b = paramChronology.withUTC();
paramObject = localPartialConverter.getPartialValues(this, paramObject, paramChronology, ISODateTimeFormat.localDateOptionalTimeParser());
this.a = this.b.getDateTimeMillis(paramObject[0], paramObject[1], paramObject[2], paramObject[3]);
}
public LocalDateTime(Object paramObject, DateTimeZone paramDateTimeZone)
{
PartialConverter localPartialConverter = ConverterManager.getInstance().getPartialConverter(paramObject);
paramDateTimeZone = DateTimeUtils.getChronology(localPartialConverter.getChronology(paramObject, paramDateTimeZone));
this.b = paramDateTimeZone.withUTC();
paramObject = localPartialConverter.getPartialValues(this, paramObject, paramDateTimeZone, ISODateTimeFormat.localDateOptionalTimeParser());
this.a = this.b.getDateTimeMillis(paramObject[0], paramObject[1], paramObject[2], paramObject[3]);
}
public LocalDateTime(Chronology paramChronology)
{
this(DateTimeUtils.currentTimeMillis(), paramChronology);
}
public LocalDateTime(DateTimeZone paramDateTimeZone)
{
this(DateTimeUtils.currentTimeMillis(), ISOChronology.getInstance(paramDateTimeZone));
}
public static LocalDateTime 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 LocalDateTime(i, paramCalendar.get(2) + 1, paramCalendar.get(5), paramCalendar.get(11), paramCalendar.get(12), paramCalendar.get(13), paramCalendar.get(14));
i = 1 - i;
}
}
public static LocalDateTime 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 LocalDateTime(paramDate.getYear() + 1900, paramDate.getMonth() + 1, paramDate.getDate(), paramDate.getHours(), paramDate.getMinutes(), paramDate.getSeconds(), ((int)(paramDate.getTime() % 1000L) + 1000) % 1000);
}
public static LocalDateTime now()
{
return new LocalDateTime();
}
public static LocalDateTime now(Chronology paramChronology)
{
if (paramChronology == null) {
throw new NullPointerException("Chronology must not be null");
}
return new LocalDateTime(paramChronology);
}
public static LocalDateTime now(DateTimeZone paramDateTimeZone)
{
if (paramDateTimeZone == null) {
throw new NullPointerException("Zone must not be null");
}
return new LocalDateTime(paramDateTimeZone);
}
@FromString
public static LocalDateTime parse(String paramString)
{
return parse(paramString, ISODateTimeFormat.localDateOptionalTimeParser());
}
public static LocalDateTime parse(String paramString, DateTimeFormatter paramDateTimeFormatter)
{
return paramDateTimeFormatter.parseLocalDateTime(paramString);
}
private Object readResolve()
{
LocalDateTime localLocalDateTime;
if (this.b == null) {
localLocalDateTime = new LocalDateTime(this.a, ISOChronology.getInstanceUTC());
}
do
{
return localLocalDateTime;
localLocalDateTime = this;
} while (DateTimeZone.UTC.equals(this.b.getZone()));
return new LocalDateTime(this.a, this.b.withUTC());
}
final LocalDateTime a(long paramLong)
{
if (paramLong == getLocalMillis()) {
return this;
}
return new LocalDateTime(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 LocalDateTime))
{
LocalDateTime localLocalDateTime = (LocalDateTime)paramReadablePartial;
if (this.b.equals(localLocalDateTime.b))
{
if (this.a < localLocalDateTime.a) {
return -1;
}
if (this.a == localLocalDateTime.a) {
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 LocalDateTime))
{
LocalDateTime localLocalDateTime = (LocalDateTime)paramObject;
if (this.b.equals(localLocalDateTime.b)) {
return this.a == localLocalDateTime.a;
}
}
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");
}
return paramDateTimeFieldType.getField(getChronology()).get(getLocalMillis());
}
public final int getCenturyOfEra()
{
return getChronology().centuryOfEra().get(getLocalMillis());
}
public final Chronology getChronology()
{
return this.b;
}
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();
case 2:
return paramChronology.dayOfMonth();
}
return paramChronology.millisOfDay();
}
public final int getHourOfDay()
{
return getChronology().hourOfDay().get(getLocalMillis());
}
protected final long getLocalMillis()
{
return this.a;
}
public final int getMillisOfDay()
{
return getChronology().millisOfDay().get(getLocalMillis());
}
public final int getMillisOfSecond()
{
return getChronology().millisOfSecond().get(getLocalMillis());
}
public final int getMinuteOfHour()
{
return getChronology().minuteOfHour().get(getLocalMillis());
}
public final int getMonthOfYear()
{
return getChronology().monthOfYear().get(getLocalMillis());
}
public final int getSecondOfMinute()
{
return getChronology().secondOfMinute().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());
case 2:
return getChronology().dayOfMonth().get(getLocalMillis());
}
return getChronology().millisOfDay().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 Property hourOfDay()
{
return new Property(this, getChronology().hourOfDay());
}
public final boolean isSupported(DateTimeFieldType paramDateTimeFieldType)
{
if (paramDateTimeFieldType == null) {
return false;
}
return paramDateTimeFieldType.getField(getChronology()).isSupported();
}
public final boolean isSupported(DurationFieldType paramDurationFieldType)
{
if (paramDurationFieldType == null) {
return false;
}
return paramDurationFieldType.getField(getChronology()).isSupported();
}
public final Property millisOfDay()
{
return new Property(this, getChronology().millisOfDay());
}
public final Property millisOfSecond()
{
return new Property(this, getChronology().millisOfSecond());
}
public final LocalDateTime minus(ReadableDuration paramReadableDuration)
{
return withDurationAdded(paramReadableDuration, -1);
}
public final LocalDateTime minus(ReadablePeriod paramReadablePeriod)
{
return withPeriodAdded(paramReadablePeriod, -1);
}
public final LocalDateTime minusDays(int paramInt)
{
if (paramInt == 0) {
return this;
}
return a(getChronology().days().subtract(getLocalMillis(), paramInt));
}
public final LocalDateTime minusHours(int paramInt)
{
if (paramInt == 0) {
return this;
}
return a(getChronology().hours().subtract(getLocalMillis(), paramInt));
}
public final LocalDateTime minusMillis(int paramInt)
{
if (paramInt == 0) {
return this;
}
return a(getChronology().millis().subtract(getLocalMillis(), paramInt));
}
public final LocalDateTime minusMinutes(int paramInt)
{
if (paramInt == 0) {
return this;
}
return a(getChronology().minutes().subtract(getLocalMillis(), paramInt));
}
public final LocalDateTime minusMonths(int paramInt)
{
if (paramInt == 0) {
return this;
}
return a(getChronology().months().subtract(getLocalMillis(), paramInt));
}
public final LocalDateTime minusSeconds(int paramInt)
{
if (paramInt == 0) {
return this;
}
return a(getChronology().seconds().subtract(getLocalMillis(), paramInt));
}
public final LocalDateTime minusWeeks(int paramInt)
{
if (paramInt == 0) {
return this;
}
return a(getChronology().weeks().subtract(getLocalMillis(), paramInt));
}
public final LocalDateTime minusYears(int paramInt)
{
if (paramInt == 0) {
return this;
}
return a(getChronology().years().subtract(getLocalMillis(), paramInt));
}
public final Property minuteOfHour()
{
return new Property(this, getChronology().minuteOfHour());
}
public final Property monthOfYear()
{
return new Property(this, getChronology().monthOfYear());
}
public final LocalDateTime plus(ReadableDuration paramReadableDuration)
{
return withDurationAdded(paramReadableDuration, 1);
}
public final LocalDateTime plus(ReadablePeriod paramReadablePeriod)
{
return withPeriodAdded(paramReadablePeriod, 1);
}
public final LocalDateTime plusDays(int paramInt)
{
if (paramInt == 0) {
return this;
}
return a(getChronology().days().add(getLocalMillis(), paramInt));
}
public final LocalDateTime plusHours(int paramInt)
{
if (paramInt == 0) {
return this;
}
return a(getChronology().hours().add(getLocalMillis(), paramInt));
}
public final LocalDateTime plusMillis(int paramInt)
{
if (paramInt == 0) {
return this;
}
return a(getChronology().millis().add(getLocalMillis(), paramInt));
}
public final LocalDateTime plusMinutes(int paramInt)
{
if (paramInt == 0) {
return this;
}
return a(getChronology().minutes().add(getLocalMillis(), paramInt));
}
public final LocalDateTime plusMonths(int paramInt)
{
if (paramInt == 0) {
return this;
}
return a(getChronology().months().add(getLocalMillis(), paramInt));
}
public final LocalDateTime plusSeconds(int paramInt)
{
if (paramInt == 0) {
return this;
}
return a(getChronology().seconds().add(getLocalMillis(), paramInt));
}
public final LocalDateTime plusWeeks(int paramInt)
{
if (paramInt == 0) {
return this;
}
return a(getChronology().weeks().add(getLocalMillis(), paramInt));
}
public final LocalDateTime 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 Property secondOfMinute()
{
return new Property(this, getChronology().secondOfMinute());
}
public final int size()
{
return 4;
}
public final Date toDate()
{
int i = getDayOfMonth();
Date localDate = new Date(getYear() - 1900, getMonthOfYear() - 1, i, getHourOfDay(), getMinuteOfHour(), getSecondOfMinute());
localDate.setTime(localDate.getTime() + getMillisOfSecond());
Object localObject1 = fromDateFields(localDate);
if (((LocalDateTime)localObject1).isBefore(this))
{
Object localObject2;
for (;;)
{
localObject2 = localObject1;
if (!((LocalDateTime)localObject1).isBefore(this)) {
break;
}
localDate.setTime(localDate.getTime() + 60000L);
localObject1 = fromDateFields(localDate);
}
while (!((LocalDateTime)localObject2).isBefore(this))
{
localDate.setTime(localDate.getTime() - 1000L);
localObject2 = fromDateFields(localDate);
}
localDate.setTime(localDate.getTime() + 1000L);
}
do
{
do
{
return localDate;
} while (!((LocalDateTime)localObject1).equals(this));
localObject1 = new Date(localDate.getTime() - TimeZone.getDefault().getDSTSavings());
} while (!fromDateFields((Date)localObject1).equals(this));
return (Date)localObject1;
}
public final DateTime toDateTime()
{
return toDateTime(null);
}
public final DateTime toDateTime(DateTimeZone paramDateTimeZone)
{
paramDateTimeZone = DateTimeUtils.getZone(paramDateTimeZone);
paramDateTimeZone = this.b.withZone(paramDateTimeZone);
return new DateTime(getYear(), getMonthOfYear(), getDayOfMonth(), getHourOfDay(), getMinuteOfHour(), getSecondOfMinute(), getMillisOfSecond(), paramDateTimeZone);
}
public final LocalDate toLocalDate()
{
return new LocalDate(getLocalMillis(), getChronology());
}
public final LocalTime toLocalTime()
{
return new LocalTime(getLocalMillis(), getChronology());
}
@ToString
public final String toString()
{
return ISODateTimeFormat.dateTime().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 LocalDateTime withCenturyOfEra(int paramInt)
{
return a(getChronology().centuryOfEra().set(getLocalMillis(), paramInt));
}
public final LocalDateTime withDate(int paramInt1, int paramInt2, int paramInt3)
{
Chronology localChronology = getChronology();
long l = getLocalMillis();
l = localChronology.year().set(l, paramInt1);
l = localChronology.monthOfYear().set(l, paramInt2);
return a(localChronology.dayOfMonth().set(l, paramInt3));
}
public final LocalDateTime withDayOfMonth(int paramInt)
{
return a(getChronology().dayOfMonth().set(getLocalMillis(), paramInt));
}
public final LocalDateTime withDayOfWeek(int paramInt)
{
return a(getChronology().dayOfWeek().set(getLocalMillis(), paramInt));
}
public final LocalDateTime withDayOfYear(int paramInt)
{
return a(getChronology().dayOfYear().set(getLocalMillis(), paramInt));
}
public final LocalDateTime withDurationAdded(ReadableDuration paramReadableDuration, int paramInt)
{
if ((paramReadableDuration == null) || (paramInt == 0)) {
return this;
}
return a(getChronology().add(getLocalMillis(), paramReadableDuration.getMillis(), paramInt));
}
public final LocalDateTime withEra(int paramInt)
{
return a(getChronology().era().set(getLocalMillis(), paramInt));
}
public final LocalDateTime withField(DateTimeFieldType paramDateTimeFieldType, int paramInt)
{
if (paramDateTimeFieldType == null) {
throw new IllegalArgumentException("Field must not be null");
}
return a(paramDateTimeFieldType.getField(getChronology()).set(getLocalMillis(), paramInt));
}
public final LocalDateTime withFieldAdded(DurationFieldType paramDurationFieldType, int paramInt)
{
if (paramDurationFieldType == null) {
throw new IllegalArgumentException("Field must not be null");
}
if (paramInt == 0) {
return this;
}
return a(paramDurationFieldType.getField(getChronology()).add(getLocalMillis(), paramInt));
}
public final LocalDateTime withFields(ReadablePartial paramReadablePartial)
{
if (paramReadablePartial == null) {
return this;
}
return a(getChronology().set(paramReadablePartial, getLocalMillis()));
}
public final LocalDateTime withHourOfDay(int paramInt)
{
return a(getChronology().hourOfDay().set(getLocalMillis(), paramInt));
}
public final LocalDateTime withMillisOfDay(int paramInt)
{
return a(getChronology().millisOfDay().set(getLocalMillis(), paramInt));
}
public final LocalDateTime withMillisOfSecond(int paramInt)
{
return a(getChronology().millisOfSecond().set(getLocalMillis(), paramInt));
}
public final LocalDateTime withMinuteOfHour(int paramInt)
{
return a(getChronology().minuteOfHour().set(getLocalMillis(), paramInt));
}
public final LocalDateTime withMonthOfYear(int paramInt)
{
return a(getChronology().monthOfYear().set(getLocalMillis(), paramInt));
}
public final LocalDateTime withPeriodAdded(ReadablePeriod paramReadablePeriod, int paramInt)
{
if ((paramReadablePeriod == null) || (paramInt == 0)) {
return this;
}
return a(getChronology().add(paramReadablePeriod, getLocalMillis(), paramInt));
}
public final LocalDateTime withSecondOfMinute(int paramInt)
{
return a(getChronology().secondOfMinute().set(getLocalMillis(), paramInt));
}
public final LocalDateTime withTime(int paramInt1, int paramInt2, int paramInt3, int paramInt4)
{
Chronology localChronology = getChronology();
long l = getLocalMillis();
l = localChronology.hourOfDay().set(l, paramInt1);
l = localChronology.minuteOfHour().set(l, paramInt2);
l = localChronology.secondOfMinute().set(l, paramInt3);
return a(localChronology.millisOfSecond().set(l, paramInt4));
}
public final LocalDateTime withWeekOfWeekyear(int paramInt)
{
return a(getChronology().weekOfWeekyear().set(getLocalMillis(), paramInt));
}
public final LocalDateTime withWeekyear(int paramInt)
{
return a(getChronology().weekyear().set(getLocalMillis(), paramInt));
}
public final LocalDateTime withYear(int paramInt)
{
return a(getChronology().year().set(getLocalMillis(), paramInt));
}
public final LocalDateTime withYearOfCentury(int paramInt)
{
return a(getChronology().yearOfCentury().set(getLocalMillis(), paramInt));
}
public final LocalDateTime 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 = -358138762846288L;
private transient LocalDateTime a;
private transient DateTimeField b;
Property(LocalDateTime paramLocalDateTime, DateTimeField paramDateTimeField)
{
this.a = paramLocalDateTime;
this.b = paramDateTimeField;
}
private void readObject(ObjectInputStream paramObjectInputStream)
throws IOException, ClassNotFoundException
{
this.a = ((LocalDateTime)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 LocalDateTime addToCopy(int paramInt)
{
return this.a.a(this.b.add(this.a.getLocalMillis(), paramInt));
}
public final LocalDateTime addToCopy(long paramLong)
{
return this.a.a(this.b.add(this.a.getLocalMillis(), paramLong));
}
public final LocalDateTime 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 LocalDateTime getLocalDateTime()
{
return this.a;
}
protected final long getMillis()
{
return this.a.getLocalMillis();
}
public final LocalDateTime roundCeilingCopy()
{
return this.a.a(this.b.roundCeiling(this.a.getLocalMillis()));
}
public final LocalDateTime roundFloorCopy()
{
return this.a.a(this.b.roundFloor(this.a.getLocalMillis()));
}
public final LocalDateTime roundHalfCeilingCopy()
{
return this.a.a(this.b.roundHalfCeiling(this.a.getLocalMillis()));
}
public final LocalDateTime roundHalfEvenCopy()
{
return this.a.a(this.b.roundHalfEven(this.a.getLocalMillis()));
}
public final LocalDateTime roundHalfFloorCopy()
{
return this.a.a(this.b.roundHalfFloor(this.a.getLocalMillis()));
}
public final LocalDateTime setCopy(int paramInt)
{
return this.a.a(this.b.set(this.a.getLocalMillis(), paramInt));
}
public final LocalDateTime setCopy(String paramString)
{
return setCopy(paramString, null);
}
public final LocalDateTime setCopy(String paramString, Locale paramLocale)
{
return this.a.a(this.b.set(this.a.getLocalMillis(), paramString, paramLocale));
}
public final LocalDateTime withMaximumValue()
{
return setCopy(getMaximumValue());
}
public final LocalDateTime withMinimumValue()
{
return setCopy(getMinimumValue());
}
}
}
/* Location: /home/merong/decompile/hackery-dex2jar.jar!/org/joda/time/LocalDateTime.class
* Java compiler version: 6 (50.0)
* JD-Core Version: 0.7.1
*/