This file is indexed.

/usr/share/doc/libjoda-time-java/api/org/joda/time/DateTimeConstants.html is in libjoda-time-java-doc 2.4-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  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
961
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
<title>DateTimeConstants (Joda-Time 2.4 API)</title>
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
    if (location.href.indexOf('is-external=true') == -1) {
        parent.document.title="DateTimeConstants (Joda-Time 2.4 API)";
    }
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar_top">
<!--   -->
</a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow">
<!--   -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="class-use/DateTimeConstants.html">Use</a></li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../index-all.html">Index</a></li>
<li><a href="../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../org/joda/time/DateTimeComparator.html" title="class in org.joda.time"><span class="strong">Prev Class</span></a></li>
<li><a href="../../../org/joda/time/DateTimeField.html" title="class in org.joda.time"><span class="strong">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../index.html?org/joda/time/DateTimeConstants.html" target="_top">Frames</a></li>
<li><a href="DateTimeConstants.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
  allClassesLink = document.getElementById("allclasses_navbar_top");
  if(window==top) {
    allClassesLink.style.display = "block";
  }
  else {
    allClassesLink.style.display = "none";
  }
  //-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary:&nbsp;</li>
<li>Nested&nbsp;|&nbsp;</li>
<li><a href="#field_summary">Field</a>&nbsp;|&nbsp;</li>
<li><a href="#constructor_summary">Constr</a>&nbsp;|&nbsp;</li>
<li><a href="#methods_inherited_from_class_java.lang.Object">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail:&nbsp;</li>
<li><a href="#field_detail">Field</a>&nbsp;|&nbsp;</li>
<li><a href="#constructor_detail">Constr</a>&nbsp;|&nbsp;</li>
<li>Method</li>
</ul>
</div>
<a name="skip-navbar_top">
<!--   -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<!-- ======== START OF CLASS DATA ======== -->
<div class="header">
<div class="subTitle">org.joda.time</div>
<h2 title="Class DateTimeConstants" class="title">Class DateTimeConstants</h2>
</div>
<div class="contentContainer">
<ul class="inheritance">
<li><a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">java.lang.Object</a></li>
<li>
<ul class="inheritance">
<li>org.joda.time.DateTimeConstants</li>
</ul>
</li>
</ul>
<div class="description">
<ul class="blockList">
<li class="blockList">
<hr>
<br>
<pre>public class <span class="strong">DateTimeConstants</span>
extends <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a></pre>
<div class="block">DateTimeConstants is a non-instantiable class of constants used in
 the date time system. These are the ISO8601 constants, but should be
 used by all chronologies.
 <p>
 DateTimeConstants is thread-safe and immutable.</div>
<dl><dt><span class="strong">Since:</span></dt>
  <dd>1.0</dd></dl>
</li>
</ul>
</div>
<div class="summary">
<ul class="blockList">
<li class="blockList">
<!-- =========== FIELD SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="field_summary">
<!--   -->
</a>
<h3>Field Summary</h3>
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Field Summary table, listing fields, and an explanation">
<caption><span>Fields</span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Field and Description</th>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static int</code></td>
<td class="colLast"><code><strong><a href="../../../org/joda/time/DateTimeConstants.html#AD">AD</a></strong></code>
<div class="block">Constant (1) representing AD, years after zero (from Calendar).</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static int</code></td>
<td class="colLast"><code><strong><a href="../../../org/joda/time/DateTimeConstants.html#AM">AM</a></strong></code>
<div class="block">Constant (0) representing AM, the morning (from Calendar)</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static int</code></td>
<td class="colLast"><code><strong><a href="../../../org/joda/time/DateTimeConstants.html#APRIL">APRIL</a></strong></code>
<div class="block">Constant (4) representing April, the fourth month (ISO)</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static int</code></td>
<td class="colLast"><code><strong><a href="../../../org/joda/time/DateTimeConstants.html#AUGUST">AUGUST</a></strong></code>
<div class="block">Constant (8) representing August, the eighth month (ISO)</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static int</code></td>
<td class="colLast"><code><strong><a href="../../../org/joda/time/DateTimeConstants.html#BC">BC</a></strong></code>
<div class="block">Constant (0) representing BC, years before zero (from Calendar)</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static int</code></td>
<td class="colLast"><code><strong><a href="../../../org/joda/time/DateTimeConstants.html#BCE">BCE</a></strong></code>
<div class="block">Alternative constant (0) representing BCE, Before Common Era (secular)</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static int</code></td>
<td class="colLast"><code><strong><a href="../../../org/joda/time/DateTimeConstants.html#CE">CE</a></strong></code>
<div class="block">Alternative constant (1) representing CE, Common Era (secular).</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static int</code></td>
<td class="colLast"><code><strong><a href="../../../org/joda/time/DateTimeConstants.html#DAYS_PER_WEEK">DAYS_PER_WEEK</a></strong></code>
<div class="block">Days in one week (7) (ISO)</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static int</code></td>
<td class="colLast"><code><strong><a href="../../../org/joda/time/DateTimeConstants.html#DECEMBER">DECEMBER</a></strong></code>
<div class="block">Constant (12) representing December, the twelfth month (ISO)</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static int</code></td>
<td class="colLast"><code><strong><a href="../../../org/joda/time/DateTimeConstants.html#FEBRUARY">FEBRUARY</a></strong></code>
<div class="block">Constant (2) representing February, the second month (ISO)</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static int</code></td>
<td class="colLast"><code><strong><a href="../../../org/joda/time/DateTimeConstants.html#FRIDAY">FRIDAY</a></strong></code>
<div class="block">Constant (5) representing Friday, the fifth day of the week (ISO)</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static int</code></td>
<td class="colLast"><code><strong><a href="../../../org/joda/time/DateTimeConstants.html#HOURS_PER_DAY">HOURS_PER_DAY</a></strong></code>
<div class="block">Hours in a typical day (24) (ISO).</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static int</code></td>
<td class="colLast"><code><strong><a href="../../../org/joda/time/DateTimeConstants.html#HOURS_PER_WEEK">HOURS_PER_WEEK</a></strong></code>
<div class="block">Hours in a typical week.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static int</code></td>
<td class="colLast"><code><strong><a href="../../../org/joda/time/DateTimeConstants.html#JANUARY">JANUARY</a></strong></code>
<div class="block">Constant (1) representing January, the first month (ISO)</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static int</code></td>
<td class="colLast"><code><strong><a href="../../../org/joda/time/DateTimeConstants.html#JULY">JULY</a></strong></code>
<div class="block">Constant (7) representing July, the seventh month (ISO)</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static int</code></td>
<td class="colLast"><code><strong><a href="../../../org/joda/time/DateTimeConstants.html#JUNE">JUNE</a></strong></code>
<div class="block">Constant (6) representing June, the sixth month (ISO)</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static int</code></td>
<td class="colLast"><code><strong><a href="../../../org/joda/time/DateTimeConstants.html#MARCH">MARCH</a></strong></code>
<div class="block">Constant (3) representing March, the third month (ISO)</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static int</code></td>
<td class="colLast"><code><strong><a href="../../../org/joda/time/DateTimeConstants.html#MAY">MAY</a></strong></code>
<div class="block">Constant (5) representing May, the fifth month (ISO)</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static int</code></td>
<td class="colLast"><code><strong><a href="../../../org/joda/time/DateTimeConstants.html#MILLIS_PER_DAY">MILLIS_PER_DAY</a></strong></code>
<div class="block">Milliseconds in a typical day (ISO).</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static int</code></td>
<td class="colLast"><code><strong><a href="../../../org/joda/time/DateTimeConstants.html#MILLIS_PER_HOUR">MILLIS_PER_HOUR</a></strong></code>
<div class="block">Milliseconds in one hour (ISO)</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static int</code></td>
<td class="colLast"><code><strong><a href="../../../org/joda/time/DateTimeConstants.html#MILLIS_PER_MINUTE">MILLIS_PER_MINUTE</a></strong></code>
<div class="block">Milliseconds in one minute (ISO)</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static int</code></td>
<td class="colLast"><code><strong><a href="../../../org/joda/time/DateTimeConstants.html#MILLIS_PER_SECOND">MILLIS_PER_SECOND</a></strong></code>
<div class="block">Milliseconds in one second (1000) (ISO)</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static int</code></td>
<td class="colLast"><code><strong><a href="../../../org/joda/time/DateTimeConstants.html#MILLIS_PER_WEEK">MILLIS_PER_WEEK</a></strong></code>
<div class="block">Milliseconds in a typical week (ISO).</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static int</code></td>
<td class="colLast"><code><strong><a href="../../../org/joda/time/DateTimeConstants.html#MINUTES_PER_DAY">MINUTES_PER_DAY</a></strong></code>
<div class="block">Minutes in a typical day (ISO).</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static int</code></td>
<td class="colLast"><code><strong><a href="../../../org/joda/time/DateTimeConstants.html#MINUTES_PER_HOUR">MINUTES_PER_HOUR</a></strong></code>
<div class="block">Minutes in one hour (ISO)</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static int</code></td>
<td class="colLast"><code><strong><a href="../../../org/joda/time/DateTimeConstants.html#MINUTES_PER_WEEK">MINUTES_PER_WEEK</a></strong></code>
<div class="block">Minutes in a typical week (ISO).</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static int</code></td>
<td class="colLast"><code><strong><a href="../../../org/joda/time/DateTimeConstants.html#MONDAY">MONDAY</a></strong></code>
<div class="block">Constant (1) representing Monday, the first day of the week (ISO)</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static int</code></td>
<td class="colLast"><code><strong><a href="../../../org/joda/time/DateTimeConstants.html#NOVEMBER">NOVEMBER</a></strong></code>
<div class="block">Constant (11) representing November, the eleventh month (ISO)</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static int</code></td>
<td class="colLast"><code><strong><a href="../../../org/joda/time/DateTimeConstants.html#OCTOBER">OCTOBER</a></strong></code>
<div class="block">Constant (10) representing October, the tenth month (ISO)</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static int</code></td>
<td class="colLast"><code><strong><a href="../../../org/joda/time/DateTimeConstants.html#PM">PM</a></strong></code>
<div class="block">Constant (1) representing PM, the afternoon (from Calendar)</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static int</code></td>
<td class="colLast"><code><strong><a href="../../../org/joda/time/DateTimeConstants.html#SATURDAY">SATURDAY</a></strong></code>
<div class="block">Constant (6) representing Saturday, the sixth day of the week (ISO)</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static int</code></td>
<td class="colLast"><code><strong><a href="../../../org/joda/time/DateTimeConstants.html#SECONDS_PER_DAY">SECONDS_PER_DAY</a></strong></code>
<div class="block">Seconds in a typical day (ISO).</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static int</code></td>
<td class="colLast"><code><strong><a href="../../../org/joda/time/DateTimeConstants.html#SECONDS_PER_HOUR">SECONDS_PER_HOUR</a></strong></code>
<div class="block">Seconds in one hour (ISO)</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static int</code></td>
<td class="colLast"><code><strong><a href="../../../org/joda/time/DateTimeConstants.html#SECONDS_PER_MINUTE">SECONDS_PER_MINUTE</a></strong></code>
<div class="block">Seconds in one minute (60) (ISO)</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static int</code></td>
<td class="colLast"><code><strong><a href="../../../org/joda/time/DateTimeConstants.html#SECONDS_PER_WEEK">SECONDS_PER_WEEK</a></strong></code>
<div class="block">Seconds in a typical week (ISO).</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static int</code></td>
<td class="colLast"><code><strong><a href="../../../org/joda/time/DateTimeConstants.html#SEPTEMBER">SEPTEMBER</a></strong></code>
<div class="block">Constant (9) representing September, the nineth month (ISO)</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static int</code></td>
<td class="colLast"><code><strong><a href="../../../org/joda/time/DateTimeConstants.html#SUNDAY">SUNDAY</a></strong></code>
<div class="block">Constant (7) representing Sunday, the seventh day of the week (ISO)</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static int</code></td>
<td class="colLast"><code><strong><a href="../../../org/joda/time/DateTimeConstants.html#THURSDAY">THURSDAY</a></strong></code>
<div class="block">Constant (4) representing Thursday, the fourth day of the week (ISO)</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static int</code></td>
<td class="colLast"><code><strong><a href="../../../org/joda/time/DateTimeConstants.html#TUESDAY">TUESDAY</a></strong></code>
<div class="block">Constant (2) representing Tuesday, the second day of the week (ISO)</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static int</code></td>
<td class="colLast"><code><strong><a href="../../../org/joda/time/DateTimeConstants.html#WEDNESDAY">WEDNESDAY</a></strong></code>
<div class="block">Constant (3) representing Wednesday, the third day of the week (ISO)</div>
</td>
</tr>
</table>
</li>
</ul>
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor_summary">
<!--   -->
</a>
<h3>Constructor Summary</h3>
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation">
<caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colFirst" scope="col">Modifier</th>
<th class="colLast" scope="col">Constructor and Description</th>
</tr>
<tr class="altColor">
<td class="colFirst"><code>protected </code></td>
<td class="colLast"><code><strong><a href="../../../org/joda/time/DateTimeConstants.html#DateTimeConstants()">DateTimeConstants</a></strong>()</code>
<div class="block">Restrictive constructor</div>
</td>
</tr>
</table>
</li>
</ul>
<!-- ========== METHOD SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="method_summary">
<!--   -->
</a>
<h3>Method Summary</h3>
<ul class="blockList">
<li class="blockList"><a name="methods_inherited_from_class_java.lang.Object">
<!--   -->
</a>
<h3>Methods inherited from class&nbsp;java.lang.<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a></h3>
<code><a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#clone()" title="class or interface in java.lang">clone</a>, <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#equals(java.lang.Object)" title="class or interface in java.lang">equals</a>, <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#finalize()" title="class or interface in java.lang">finalize</a>, <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#getClass()" title="class or interface in java.lang">getClass</a>, <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#hashCode()" title="class or interface in java.lang">hashCode</a>, <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#notify()" title="class or interface in java.lang">notify</a>, <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#notifyAll()" title="class or interface in java.lang">notifyAll</a>, <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#toString()" title="class or interface in java.lang">toString</a>, <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#wait()" title="class or interface in java.lang">wait</a>, <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#wait(long)" title="class or interface in java.lang">wait</a>, <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#wait(long,%20int)" title="class or interface in java.lang">wait</a></code></li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
<div class="details">
<ul class="blockList">
<li class="blockList">
<!-- ============ FIELD DETAIL =========== -->
<ul class="blockList">
<li class="blockList"><a name="field_detail">
<!--   -->
</a>
<h3>Field Detail</h3>
<a name="JANUARY">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>JANUARY</h4>
<pre>public static final&nbsp;int JANUARY</pre>
<div class="block">Constant (1) representing January, the first month (ISO)</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../constant-values.html#org.joda.time.DateTimeConstants.JANUARY">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="FEBRUARY">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>FEBRUARY</h4>
<pre>public static final&nbsp;int FEBRUARY</pre>
<div class="block">Constant (2) representing February, the second month (ISO)</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../constant-values.html#org.joda.time.DateTimeConstants.FEBRUARY">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="MARCH">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>MARCH</h4>
<pre>public static final&nbsp;int MARCH</pre>
<div class="block">Constant (3) representing March, the third month (ISO)</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../constant-values.html#org.joda.time.DateTimeConstants.MARCH">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="APRIL">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>APRIL</h4>
<pre>public static final&nbsp;int APRIL</pre>
<div class="block">Constant (4) representing April, the fourth month (ISO)</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../constant-values.html#org.joda.time.DateTimeConstants.APRIL">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="MAY">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>MAY</h4>
<pre>public static final&nbsp;int MAY</pre>
<div class="block">Constant (5) representing May, the fifth month (ISO)</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../constant-values.html#org.joda.time.DateTimeConstants.MAY">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="JUNE">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>JUNE</h4>
<pre>public static final&nbsp;int JUNE</pre>
<div class="block">Constant (6) representing June, the sixth month (ISO)</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../constant-values.html#org.joda.time.DateTimeConstants.JUNE">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="JULY">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>JULY</h4>
<pre>public static final&nbsp;int JULY</pre>
<div class="block">Constant (7) representing July, the seventh month (ISO)</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../constant-values.html#org.joda.time.DateTimeConstants.JULY">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="AUGUST">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>AUGUST</h4>
<pre>public static final&nbsp;int AUGUST</pre>
<div class="block">Constant (8) representing August, the eighth month (ISO)</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../constant-values.html#org.joda.time.DateTimeConstants.AUGUST">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="SEPTEMBER">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>SEPTEMBER</h4>
<pre>public static final&nbsp;int SEPTEMBER</pre>
<div class="block">Constant (9) representing September, the nineth month (ISO)</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../constant-values.html#org.joda.time.DateTimeConstants.SEPTEMBER">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="OCTOBER">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>OCTOBER</h4>
<pre>public static final&nbsp;int OCTOBER</pre>
<div class="block">Constant (10) representing October, the tenth month (ISO)</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../constant-values.html#org.joda.time.DateTimeConstants.OCTOBER">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="NOVEMBER">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>NOVEMBER</h4>
<pre>public static final&nbsp;int NOVEMBER</pre>
<div class="block">Constant (11) representing November, the eleventh month (ISO)</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../constant-values.html#org.joda.time.DateTimeConstants.NOVEMBER">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="DECEMBER">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>DECEMBER</h4>
<pre>public static final&nbsp;int DECEMBER</pre>
<div class="block">Constant (12) representing December, the twelfth month (ISO)</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../constant-values.html#org.joda.time.DateTimeConstants.DECEMBER">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="MONDAY">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>MONDAY</h4>
<pre>public static final&nbsp;int MONDAY</pre>
<div class="block">Constant (1) representing Monday, the first day of the week (ISO)</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../constant-values.html#org.joda.time.DateTimeConstants.MONDAY">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="TUESDAY">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>TUESDAY</h4>
<pre>public static final&nbsp;int TUESDAY</pre>
<div class="block">Constant (2) representing Tuesday, the second day of the week (ISO)</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../constant-values.html#org.joda.time.DateTimeConstants.TUESDAY">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="WEDNESDAY">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>WEDNESDAY</h4>
<pre>public static final&nbsp;int WEDNESDAY</pre>
<div class="block">Constant (3) representing Wednesday, the third day of the week (ISO)</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../constant-values.html#org.joda.time.DateTimeConstants.WEDNESDAY">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="THURSDAY">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>THURSDAY</h4>
<pre>public static final&nbsp;int THURSDAY</pre>
<div class="block">Constant (4) representing Thursday, the fourth day of the week (ISO)</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../constant-values.html#org.joda.time.DateTimeConstants.THURSDAY">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="FRIDAY">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>FRIDAY</h4>
<pre>public static final&nbsp;int FRIDAY</pre>
<div class="block">Constant (5) representing Friday, the fifth day of the week (ISO)</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../constant-values.html#org.joda.time.DateTimeConstants.FRIDAY">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="SATURDAY">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>SATURDAY</h4>
<pre>public static final&nbsp;int SATURDAY</pre>
<div class="block">Constant (6) representing Saturday, the sixth day of the week (ISO)</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../constant-values.html#org.joda.time.DateTimeConstants.SATURDAY">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="SUNDAY">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>SUNDAY</h4>
<pre>public static final&nbsp;int SUNDAY</pre>
<div class="block">Constant (7) representing Sunday, the seventh day of the week (ISO)</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../constant-values.html#org.joda.time.DateTimeConstants.SUNDAY">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="AM">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>AM</h4>
<pre>public static final&nbsp;int AM</pre>
<div class="block">Constant (0) representing AM, the morning (from Calendar)</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../constant-values.html#org.joda.time.DateTimeConstants.AM">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="PM">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>PM</h4>
<pre>public static final&nbsp;int PM</pre>
<div class="block">Constant (1) representing PM, the afternoon (from Calendar)</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../constant-values.html#org.joda.time.DateTimeConstants.PM">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="BC">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>BC</h4>
<pre>public static final&nbsp;int BC</pre>
<div class="block">Constant (0) representing BC, years before zero (from Calendar)</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../constant-values.html#org.joda.time.DateTimeConstants.BC">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="BCE">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>BCE</h4>
<pre>public static final&nbsp;int BCE</pre>
<div class="block">Alternative constant (0) representing BCE, Before Common Era (secular)</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../constant-values.html#org.joda.time.DateTimeConstants.BCE">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="AD">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>AD</h4>
<pre>public static final&nbsp;int AD</pre>
<div class="block">Constant (1) representing AD, years after zero (from Calendar).
 <p>
 All new chronologies with differrent Era values should try to assign
 eras as follows. The era that was in force at 1970-01-01 (ISO) is assigned
 the value 1. Earlier eras are assigned sequentially smaller numbers.
 Later eras are assigned sequentially greater numbers.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../constant-values.html#org.joda.time.DateTimeConstants.AD">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="CE">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>CE</h4>
<pre>public static final&nbsp;int CE</pre>
<div class="block">Alternative constant (1) representing CE, Common Era (secular).
 <p>
 All new chronologies with differrent Era values should try to assign
 eras as follows. The era that was in force at 1970-01-01 (ISO) is assigned
 the value 1. Earlier eras are assigned sequentially smaller numbers.
 Later eras are assigned sequentially greater numbers.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../constant-values.html#org.joda.time.DateTimeConstants.CE">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="MILLIS_PER_SECOND">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>MILLIS_PER_SECOND</h4>
<pre>public static final&nbsp;int MILLIS_PER_SECOND</pre>
<div class="block">Milliseconds in one second (1000) (ISO)</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../constant-values.html#org.joda.time.DateTimeConstants.MILLIS_PER_SECOND">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="SECONDS_PER_MINUTE">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>SECONDS_PER_MINUTE</h4>
<pre>public static final&nbsp;int SECONDS_PER_MINUTE</pre>
<div class="block">Seconds in one minute (60) (ISO)</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../constant-values.html#org.joda.time.DateTimeConstants.SECONDS_PER_MINUTE">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="MILLIS_PER_MINUTE">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>MILLIS_PER_MINUTE</h4>
<pre>public static final&nbsp;int MILLIS_PER_MINUTE</pre>
<div class="block">Milliseconds in one minute (ISO)</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../constant-values.html#org.joda.time.DateTimeConstants.MILLIS_PER_MINUTE">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="MINUTES_PER_HOUR">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>MINUTES_PER_HOUR</h4>
<pre>public static final&nbsp;int MINUTES_PER_HOUR</pre>
<div class="block">Minutes in one hour (ISO)</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../constant-values.html#org.joda.time.DateTimeConstants.MINUTES_PER_HOUR">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="SECONDS_PER_HOUR">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>SECONDS_PER_HOUR</h4>
<pre>public static final&nbsp;int SECONDS_PER_HOUR</pre>
<div class="block">Seconds in one hour (ISO)</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../constant-values.html#org.joda.time.DateTimeConstants.SECONDS_PER_HOUR">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="MILLIS_PER_HOUR">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>MILLIS_PER_HOUR</h4>
<pre>public static final&nbsp;int MILLIS_PER_HOUR</pre>
<div class="block">Milliseconds in one hour (ISO)</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../constant-values.html#org.joda.time.DateTimeConstants.MILLIS_PER_HOUR">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="HOURS_PER_DAY">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>HOURS_PER_DAY</h4>
<pre>public static final&nbsp;int HOURS_PER_DAY</pre>
<div class="block">Hours in a typical day (24) (ISO). Due to time zone offset changes, the
 number of hours per day can vary.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../constant-values.html#org.joda.time.DateTimeConstants.HOURS_PER_DAY">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="MINUTES_PER_DAY">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>MINUTES_PER_DAY</h4>
<pre>public static final&nbsp;int MINUTES_PER_DAY</pre>
<div class="block">Minutes in a typical day (ISO). Due to time zone offset changes, the number
 of minutes per day can vary.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../constant-values.html#org.joda.time.DateTimeConstants.MINUTES_PER_DAY">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="SECONDS_PER_DAY">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>SECONDS_PER_DAY</h4>
<pre>public static final&nbsp;int SECONDS_PER_DAY</pre>
<div class="block">Seconds in a typical day (ISO). Due to time zone offset changes, the number
 of seconds per day can vary.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../constant-values.html#org.joda.time.DateTimeConstants.SECONDS_PER_DAY">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="MILLIS_PER_DAY">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>MILLIS_PER_DAY</h4>
<pre>public static final&nbsp;int MILLIS_PER_DAY</pre>
<div class="block">Milliseconds in a typical day (ISO). Due to time zone offset changes, the
 number of milliseconds per day can vary.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../constant-values.html#org.joda.time.DateTimeConstants.MILLIS_PER_DAY">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="DAYS_PER_WEEK">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>DAYS_PER_WEEK</h4>
<pre>public static final&nbsp;int DAYS_PER_WEEK</pre>
<div class="block">Days in one week (7) (ISO)</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../constant-values.html#org.joda.time.DateTimeConstants.DAYS_PER_WEEK">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="HOURS_PER_WEEK">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>HOURS_PER_WEEK</h4>
<pre>public static final&nbsp;int HOURS_PER_WEEK</pre>
<div class="block">Hours in a typical week. Due to time zone offset changes, the number of
 hours per week can vary.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../constant-values.html#org.joda.time.DateTimeConstants.HOURS_PER_WEEK">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="MINUTES_PER_WEEK">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>MINUTES_PER_WEEK</h4>
<pre>public static final&nbsp;int MINUTES_PER_WEEK</pre>
<div class="block">Minutes in a typical week (ISO). Due to time zone offset changes, the number
 of minutes per week can vary.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../constant-values.html#org.joda.time.DateTimeConstants.MINUTES_PER_WEEK">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="SECONDS_PER_WEEK">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>SECONDS_PER_WEEK</h4>
<pre>public static final&nbsp;int SECONDS_PER_WEEK</pre>
<div class="block">Seconds in a typical week (ISO). Due to time zone offset changes, the number
 of seconds per week can vary.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../constant-values.html#org.joda.time.DateTimeConstants.SECONDS_PER_WEEK">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="MILLIS_PER_WEEK">
<!--   -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>MILLIS_PER_WEEK</h4>
<pre>public static final&nbsp;int MILLIS_PER_WEEK</pre>
<div class="block">Milliseconds in a typical week (ISO). Due to time zone offset changes, the
 number of milliseconds per week can vary.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../constant-values.html#org.joda.time.DateTimeConstants.MILLIS_PER_WEEK">Constant Field Values</a></dd></dl>
</li>
</ul>
</li>
</ul>
<!-- ========= CONSTRUCTOR DETAIL ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor_detail">
<!--   -->
</a>
<h3>Constructor Detail</h3>
<a name="DateTimeConstants()">
<!--   -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>DateTimeConstants</h4>
<pre>protected&nbsp;DateTimeConstants()</pre>
<div class="block">Restrictive constructor</div>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
</div>
<!-- ========= END OF CLASS DATA ========= -->
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar_bottom">
<!--   -->
</a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow">
<!--   -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="class-use/DateTimeConstants.html">Use</a></li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../index-all.html">Index</a></li>
<li><a href="../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../org/joda/time/DateTimeComparator.html" title="class in org.joda.time"><span class="strong">Prev Class</span></a></li>
<li><a href="../../../org/joda/time/DateTimeField.html" title="class in org.joda.time"><span class="strong">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../index.html?org/joda/time/DateTimeConstants.html" target="_top">Frames</a></li>
<li><a href="DateTimeConstants.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
  allClassesLink = document.getElementById("allclasses_navbar_bottom");
  if(window==top) {
    allClassesLink.style.display = "block";
  }
  else {
    allClassesLink.style.display = "none";
  }
  //-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary:&nbsp;</li>
<li>Nested&nbsp;|&nbsp;</li>
<li><a href="#field_summary">Field</a>&nbsp;|&nbsp;</li>
<li><a href="#constructor_summary">Constr</a>&nbsp;|&nbsp;</li>
<li><a href="#methods_inherited_from_class_java.lang.Object">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail:&nbsp;</li>
<li><a href="#field_detail">Field</a>&nbsp;|&nbsp;</li>
<li><a href="#constructor_detail">Constr</a>&nbsp;|&nbsp;</li>
<li>Method</li>
</ul>
</div>
<a name="skip-navbar_bottom">
<!--   -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2002&#x2013;2014 <a href="http://www.joda.org">Joda.org</a>. All rights reserved.</small></p>
</body>
</html>