-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathserialized-form.html
3571 lines (3563 loc) · 169 KB
/
serialized-form.html
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
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang>
<head>
<!-- Generated by javadoc -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Serialized Form (ICU4J 76)</title>
<link rel="stylesheet" type="text/css" href="stylesheet8.css" title="Style">
<script type="text/javascript" src="script.js"></script>
</head>
<body>
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Serialized Form (ICU4J 76)";
}
}
catch(err) {
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="overview-summary.html">Overview</a></li>
<li>Package</li>
<li>Class</li>
<li>Use</li>
<li><a href="overview-tree.html">Tree</a></li>
<li><a href="index-all.html">Index</a></li>
<li><a href="help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage">ICU4J 76</div>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="index.html?serialized-form.html" target="_top">Frames</a></li>
<li><a href="serialized-form.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>
<a name="skip.navbar.top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<div class="header">
<h1 title="Serialized Form" class="title">Serialized Form</h1>
</div>
<div class="serializedFormContainer">
<ul class="blockList">
<li class="blockList">
<h2 title="Package">Package com.ibm.icu.math</h2>
<ul class="blockList">
<li class="blockList"><a name="com.ibm.icu.math.BigDecimal">
<!-- -->
</a>
<h3>Class <a href="com/ibm/icu/math/BigDecimal.html" title="class in com.ibm.icu.math">com.ibm.icu.math.BigDecimal</a> extends <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Number.html?is-external=true" title="class or interface in java.lang">Number</a> implements Serializable</h3>
<dl class="nameValue">
<dt>serialVersionUID:</dt>
<dd>8245355804974198832L</dd>
</dl>
<ul class="blockList">
<li class="blockList">
<h3>Serialized Fields</h3>
<ul class="blockList">
<li class="blockList">
<h4>ind</h4>
<pre>byte ind</pre>
<div class="block">The indicator. This may take the values:
<ul>
<li>ispos -- the number is positive <li>iszero -- the number is zero <li>isneg -- the number is negative
</ul></div>
</li>
<li class="blockList">
<h4>form</h4>
<pre>byte form</pre>
<div class="block">The formatting style. This may take the values:
<ul>
<li>MathContext.PLAIN -- no exponent needed <li>MathContext.SCIENTIFIC -- scientific notation required <li>
MathContext.ENGINEERING -- engineering notation required
</ul>
<p>
This property is an optimization; it allows us to defer number layout until it is actually needed as a string,
hence avoiding unnecessary formatting.</div>
</li>
<li class="blockList">
<h4>mant</h4>
<pre>byte[] mant</pre>
<div class="block">The value of the mantissa.
<p>
Once constructed, this may become shared between several BigDecimal objects, so must not be altered.
<p>
For efficiency (speed), this is a byte array, with each byte taking a value of 0 -> 9.
<p>
If the first byte is 0 then the value of the number is zero (and mant.length=1, except when constructed from a
plain number, for example, 0.000).</div>
</li>
<li class="blockListLast">
<h4>exp</h4>
<pre>int exp</pre>
<div class="block">The exponent.
<p>
For fixed point arithmetic, scale is <code>-exp</code>, and can apply to zero.
Note that this property can have a value less than MinExp when the mantissa has more than one digit.</div>
</li>
</ul>
</li>
</ul>
</li>
<li class="blockList"><a name="com.ibm.icu.math.MathContext">
<!-- -->
</a>
<h3>Class <a href="com/ibm/icu/math/MathContext.html" title="class in com.ibm.icu.math">com.ibm.icu.math.MathContext</a> extends <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a> implements Serializable</h3>
<dl class="nameValue">
<dt>serialVersionUID:</dt>
<dd>7163376998892515376L</dd>
</dl>
<ul class="blockList">
<li class="blockList">
<h3>Serialized Fields</h3>
<ul class="blockList">
<li class="blockList">
<h4>digits</h4>
<pre>int digits</pre>
<div class="block">The number of digits (precision) to be used for an operation.
A value of 0 indicates that unlimited precision (as many digits
as are required) will be used.
<p>
The <a href="com/ibm/icu/math/BigDecimal.html" title="class in com.ibm.icu.math"><code>BigDecimal</code></a> operator methods use this value to
determine the precision of results.
Note that leading zeros (in the integer part of a number) are
never significant.
<p>
<code>digits</code> will always be non-negative.</div>
</li>
<li class="blockList">
<h4>form</h4>
<pre>int form</pre>
<div class="block">The form of results from an operation.
<p>
The <a href="com/ibm/icu/math/BigDecimal.html" title="class in com.ibm.icu.math"><code>BigDecimal</code></a> operator methods use this value to
determine the form of results, in particular whether and how
exponential notation should be used.</div>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="com/ibm/icu/math/MathContext.html#ENGINEERING"><code>MathContext.ENGINEERING</code></a>,
<a href="com/ibm/icu/math/MathContext.html#PLAIN"><code>MathContext.PLAIN</code></a>,
<a href="com/ibm/icu/math/MathContext.html#SCIENTIFIC"><code>MathContext.SCIENTIFIC</code></a></dd>
</dl>
</li>
<li class="blockList">
<h4>lostDigits</h4>
<pre>boolean lostDigits</pre>
<div class="block">Controls whether lost digits checking is enabled for an
operation.
Set to <code>true</code> to enable checking, or
to <code>false</code> to disable checking.
<p>
When enabled, the <a href="com/ibm/icu/math/BigDecimal.html" title="class in com.ibm.icu.math"><code>BigDecimal</code></a> operator methods check
the precision of their operand or operands, and throw an
<code>ArithmeticException</code> if an operand is more precise
than the digits setting (that is, digits would be lost).
When disabled, operands are rounded to the specified digits.</div>
</li>
<li class="blockListLast">
<h4>roundingMode</h4>
<pre>int roundingMode</pre>
<div class="block">The rounding algorithm to be used for an operation.
<p>
The <a href="com/ibm/icu/math/BigDecimal.html" title="class in com.ibm.icu.math"><code>BigDecimal</code></a> operator methods use this value to
determine the algorithm to be used when non-zero digits have to
be discarded in order to reduce the precision of a result.
The value must be one of the public constants whose name starts
with <code>ROUND_</code>.</div>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="com/ibm/icu/math/MathContext.html#ROUND_CEILING"><code>MathContext.ROUND_CEILING</code></a>,
<a href="com/ibm/icu/math/MathContext.html#ROUND_DOWN"><code>MathContext.ROUND_DOWN</code></a>,
<a href="com/ibm/icu/math/MathContext.html#ROUND_FLOOR"><code>MathContext.ROUND_FLOOR</code></a>,
<a href="com/ibm/icu/math/MathContext.html#ROUND_HALF_DOWN"><code>MathContext.ROUND_HALF_DOWN</code></a>,
<a href="com/ibm/icu/math/MathContext.html#ROUND_HALF_EVEN"><code>MathContext.ROUND_HALF_EVEN</code></a>,
<a href="com/ibm/icu/math/MathContext.html#ROUND_HALF_UP"><code>MathContext.ROUND_HALF_UP</code></a>,
<a href="com/ibm/icu/math/MathContext.html#ROUND_UNNECESSARY"><code>MathContext.ROUND_UNNECESSARY</code></a>,
<a href="com/ibm/icu/math/MathContext.html#ROUND_UP"><code>MathContext.ROUND_UP</code></a></dd>
</dl>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
<li class="blockList">
<h2 title="Package">Package com.ibm.icu.message2</h2>
<ul class="blockList">
<li class="blockList"><a name="com.ibm.icu.message2.MFParseException">
<!-- -->
</a>
<h3>Class <a href="com/ibm/icu/message2/MFParseException.html" title="class in com.ibm.icu.message2">com.ibm.icu.message2.MFParseException</a> extends <a href="https://docs.oracle.com/javase/8/docs/api/java/text/ParseException.html?is-external=true" title="class or interface in java.text">ParseException</a> implements Serializable</h3>
<dl class="nameValue">
<dt>serialVersionUID:</dt>
<dd>-7634219305388292407L</dd>
</dl>
</li>
</ul>
</li>
<li class="blockList">
<h2 title="Package">Package com.ibm.icu.number</h2>
<ul class="blockList">
<li class="blockList"><a name="com.ibm.icu.number.NumberRangeFormatter.SpanField">
<!-- -->
</a>
<h3>Class <a href="com/ibm/icu/number/NumberRangeFormatter.SpanField.html" title="class in com.ibm.icu.number">com.ibm.icu.number.NumberRangeFormatter.SpanField</a> extends <a href="com/ibm/icu/text/UFormat.SpanField.html" title="class in com.ibm.icu.text">UFormat.SpanField</a> implements Serializable</h3>
<dl class="nameValue">
<dt>serialVersionUID:</dt>
<dd>8750397196515368729L</dd>
</dl>
<ul class="blockList">
<li class="blockList">
<h3>Serialization Methods</h3>
<ul class="blockList">
<li class="blockListLast">
<h4>readResolve</h4>
<pre><a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Deprecated.html?is-external=true" title="class or interface in java.lang">@Deprecated</a>
protected <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a> readResolve()
throws <a href="https://docs.oracle.com/javase/8/docs/api/java/io/InvalidObjectException.html?is-external=true" title="class or interface in java.io">InvalidObjectException</a></pre>
<div class="block"><span class="deprecatedLabel">Deprecated.</span> <span class="deprecationComment">This API is ICU internal only.</span></div>
<div class="block">Serialization method resolve instances to the constant
NumberRangeFormatter.SpanField values</div>
<dl>
<dt><span class="throwsLabel">Throws:</span></dt>
<dd><code><a href="https://docs.oracle.com/javase/8/docs/api/java/io/InvalidObjectException.html?is-external=true" title="class or interface in java.io">InvalidObjectException</a></code></dd>
</dl>
</li>
</ul>
</li>
</ul>
</li>
<li class="blockList"><a name="com.ibm.icu.number.SkeletonSyntaxException">
<!-- -->
</a>
<h3>Class <a href="com/ibm/icu/number/SkeletonSyntaxException.html" title="class in com.ibm.icu.number">com.ibm.icu.number.SkeletonSyntaxException</a> extends <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/IllegalArgumentException.html?is-external=true" title="class or interface in java.lang">IllegalArgumentException</a> implements Serializable</h3>
<dl class="nameValue">
<dt>serialVersionUID:</dt>
<dd>7733971331648360554L</dd>
</dl>
</li>
</ul>
</li>
<li class="blockList">
<h2 title="Package">Package com.ibm.icu.text</h2>
<ul class="blockList">
<li class="blockList"><a name="com.ibm.icu.text.ArabicShapingException">
<!-- -->
</a>
<h3>Class <a href="com/ibm/icu/text/ArabicShapingException.html" title="class in com.ibm.icu.text">com.ibm.icu.text.ArabicShapingException</a> extends <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Exception.html?is-external=true" title="class or interface in java.lang">Exception</a> implements Serializable</h3>
<dl class="nameValue">
<dt>serialVersionUID:</dt>
<dd>5261531805497260490L</dd>
</dl>
</li>
<li class="blockList"><a name="com.ibm.icu.text.ChineseDateFormat">
<!-- -->
</a>
<h3>Class <a href="com/ibm/icu/text/ChineseDateFormat.html" title="class in com.ibm.icu.text">com.ibm.icu.text.ChineseDateFormat</a> extends <a href="com/ibm/icu/text/SimpleDateFormat.html" title="class in com.ibm.icu.text">SimpleDateFormat</a> implements Serializable</h3>
<dl class="nameValue">
<dt>serialVersionUID:</dt>
<dd>-4610300753104099899L</dd>
</dl>
</li>
<li class="blockList"><a name="com.ibm.icu.text.ChineseDateFormat.Field">
<!-- -->
</a>
<h3>Class <a href="com/ibm/icu/text/ChineseDateFormat.Field.html" title="class in com.ibm.icu.text">com.ibm.icu.text.ChineseDateFormat.Field</a> extends <a href="com/ibm/icu/text/DateFormat.Field.html" title="class in com.ibm.icu.text">DateFormat.Field</a> implements Serializable</h3>
<dl class="nameValue">
<dt>serialVersionUID:</dt>
<dd>-5102130532751400330L</dd>
</dl>
<ul class="blockList">
<li class="blockList">
<h3>Serialization Methods</h3>
<ul class="blockList">
<li class="blockListLast">
<h4>readResolve</h4>
<pre><a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Deprecated.html?is-external=true" title="class or interface in java.lang">@Deprecated</a>
protected <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a> readResolve()
throws <a href="https://docs.oracle.com/javase/8/docs/api/java/io/InvalidObjectException.html?is-external=true" title="class or interface in java.io">InvalidObjectException</a></pre>
<div class="block"><span class="deprecatedLabel">Deprecated.</span> <span class="deprecationComment">ICU 50</span></div>
<div class="block">Resolves instances being deserialized to the predefined constants.</div>
<dl>
<dt><span class="throwsLabel">Throws:</span></dt>
<dd><code><a href="https://docs.oracle.com/javase/8/docs/api/java/io/InvalidObjectException.html?is-external=true" title="class or interface in java.io">InvalidObjectException</a></code> - if the constant could not be resolved.</dd>
</dl>
</li>
</ul>
</li>
</ul>
</li>
<li class="blockList"><a name="com.ibm.icu.text.ChineseDateFormatSymbols">
<!-- -->
</a>
<h3>Class <a href="com/ibm/icu/text/ChineseDateFormatSymbols.html" title="class in com.ibm.icu.text">com.ibm.icu.text.ChineseDateFormatSymbols</a> extends <a href="com/ibm/icu/text/DateFormatSymbols.html" title="class in com.ibm.icu.text">DateFormatSymbols</a> implements Serializable</h3>
<dl class="nameValue">
<dt>serialVersionUID:</dt>
<dd>6827816119783952890L</dd>
</dl>
<ul class="blockList">
<li class="blockList">
<h3>Serialized Fields</h3>
<ul class="blockList">
<li class="blockListLast">
<h4>isLeapMonth</h4>
<pre><a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>[] isLeapMonth</pre>
<div class="block"><span class="deprecatedLabel">Deprecated.</span> </div>
</li>
</ul>
</li>
</ul>
</li>
<li class="blockList"><a name="com.ibm.icu.text.CompactDecimalFormat">
<!-- -->
</a>
<h3>Class <a href="com/ibm/icu/text/CompactDecimalFormat.html" title="class in com.ibm.icu.text">com.ibm.icu.text.CompactDecimalFormat</a> extends <a href="com/ibm/icu/text/DecimalFormat.html" title="class in com.ibm.icu.text">DecimalFormat</a> implements Serializable</h3>
<dl class="nameValue">
<dt>serialVersionUID:</dt>
<dd>4716293295276629682L</dd>
</dl>
</li>
<li class="blockList"><a name="com.ibm.icu.text.CurrencyPluralInfo">
<!-- -->
</a>
<h3>Class <a href="com/ibm/icu/text/CurrencyPluralInfo.html" title="class in com.ibm.icu.text">com.ibm.icu.text.CurrencyPluralInfo</a> extends <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a> implements Serializable</h3>
<dl class="nameValue">
<dt>serialVersionUID:</dt>
<dd>1L</dd>
</dl>
<ul class="blockList">
<li class="blockList">
<h3>Serialized Fields</h3>
<ul class="blockList">
<li class="blockList">
<h4>pluralCountToCurrencyUnitPattern</h4>
<pre><a href="https://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true" title="class or interface in java.util">Map</a><<a href="https://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true" title="class or interface in java.util">K</a>,<a href="https://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true" title="class or interface in java.util">V</a>> pluralCountToCurrencyUnitPattern</pre>
</li>
<li class="blockList">
<h4>pluralRules</h4>
<pre><a href="com/ibm/icu/text/PluralRules.html" title="class in com.ibm.icu.text">PluralRules</a> pluralRules</pre>
</li>
<li class="blockListLast">
<h4>ulocale</h4>
<pre><a href="com/ibm/icu/util/ULocale.html" title="class in com.ibm.icu.util">ULocale</a> ulocale</pre>
</li>
</ul>
</li>
</ul>
</li>
<li class="blockList"><a name="com.ibm.icu.text.DateFormat">
<!-- -->
</a>
<h3>Class <a href="com/ibm/icu/text/DateFormat.html" title="class in com.ibm.icu.text">com.ibm.icu.text.DateFormat</a> extends <a href="com/ibm/icu/text/UFormat.html" title="class in com.ibm.icu.text">UFormat</a> implements Serializable</h3>
<dl class="nameValue">
<dt>serialVersionUID:</dt>
<dd>7218322306649953788L</dd>
</dl>
<ul class="blockList">
<li class="blockList">
<h3>Serialization Methods</h3>
<ul class="blockList">
<li class="blockListLast">
<h4>readObject</h4>
<pre>private void readObject(<a href="https://docs.oracle.com/javase/8/docs/api/java/io/ObjectInputStream.html?is-external=true" title="class or interface in java.io">ObjectInputStream</a> stream)
throws <a href="https://docs.oracle.com/javase/8/docs/api/java/io/IOException.html?is-external=true" title="class or interface in java.io">IOException</a>,
<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/ClassNotFoundException.html?is-external=true" title="class or interface in java.lang">ClassNotFoundException</a></pre>
<div class="block">First, read in the default serializable data.
Then, if <code>serialVersionOnStream</code> is less than 1, indicating that
the stream was written by a pre-ICU-53 version,
set capitalizationSetting to a default value.
Finally, set serialVersionOnStream back to the maximum allowed value so that
default serialization will work properly if this object is streamed out again.</div>
<dl>
<dt><span class="throwsLabel">Throws:</span></dt>
<dd><code><a href="https://docs.oracle.com/javase/8/docs/api/java/io/IOException.html?is-external=true" title="class or interface in java.io">IOException</a></code></dd>
<dd><code><a href="https://docs.oracle.com/javase/8/docs/api/java/lang/ClassNotFoundException.html?is-external=true" title="class or interface in java.lang">ClassNotFoundException</a></code></dd>
</dl>
</li>
</ul>
</li>
<li class="blockList">
<h3>Serialized Fields</h3>
<ul class="blockList">
<li class="blockList">
<h4>calendar</h4>
<pre><a href="com/ibm/icu/util/Calendar.html" title="class in com.ibm.icu.util">Calendar</a> calendar</pre>
<div class="block">The calendar that <code>DateFormat</code> uses to produce the time field
values needed to implement date and time formatting. Subclasses should
initialize this to a calendar appropriate for the locale associated with
this <code>DateFormat</code>.</div>
<dl><dt><b>Status:</b></dt><dd>Stable ICU 2.0.</dd></dl>
</li>
<li class="blockList">
<h4>numberFormat</h4>
<pre><a href="com/ibm/icu/text/NumberFormat.html" title="class in com.ibm.icu.text">NumberFormat</a> numberFormat</pre>
<div class="block">The number formatter that <code>DateFormat</code> uses to format numbers
in dates and times. Subclasses should initialize this to a number format
appropriate for the locale associated with this <code>DateFormat</code>.</div>
<dl><dt><b>Status:</b></dt><dd>Stable ICU 2.0.</dd></dl>
</li>
<li class="blockList">
<h4>booleanAttributes</h4>
<pre><a href="https://docs.oracle.com/javase/8/docs/api/java/util/EnumSet.html?is-external=true" title="class or interface in java.util">EnumSet</a><<a href="https://docs.oracle.com/javase/8/docs/api/java/util/EnumSet.html?is-external=true" title="class or interface in java.util">E</a> extends <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html?is-external=true" title="class or interface in java.lang">Enum</a><<a href="https://docs.oracle.com/javase/8/docs/api/java/util/EnumSet.html?is-external=true" title="class or interface in java.util">E</a>>> booleanAttributes</pre>
<div class="block">boolean attributes for this instance. Inclusion in this is indicates a true condition.</div>
</li>
<li class="blockList">
<h4>capitalizationSetting</h4>
<pre><a href="com/ibm/icu/text/DisplayContext.html" title="enum in com.ibm.icu.text">DisplayContext</a> capitalizationSetting</pre>
</li>
<li class="blockListLast">
<h4>serialVersionOnStream</h4>
<pre>int serialVersionOnStream</pre>
<div class="block">Describes the version of <code>DateFormat</code> present on the stream.
Possible values are:
<ul>
<li><b>0</b> (or uninitialized): the pre-ICU-53 version
<li><b>1</b>: ICU 53, adds serialVersionOnStream and capitalizationSetting
</ul>
When streaming out a <code>DateFormat</code>, the most recent format
(corresponding to the highest allowable <code>serialVersionOnStream</code>)
is always written.</div>
</li>
</ul>
</li>
</ul>
</li>
<li class="blockList"><a name="com.ibm.icu.text.DateFormat.Field">
<!-- -->
</a>
<h3>Class <a href="com/ibm/icu/text/DateFormat.Field.html" title="class in com.ibm.icu.text">com.ibm.icu.text.DateFormat.Field</a> extends <a href="https://docs.oracle.com/javase/8/docs/api/java/text/Format.Field.html?is-external=true" title="class or interface in java.text">Format.Field</a> implements Serializable</h3>
<dl class="nameValue">
<dt>serialVersionUID:</dt>
<dd>-3627456821000730829L</dd>
</dl>
<ul class="blockList">
<li class="blockList">
<h3>Serialization Methods</h3>
<ul class="blockList">
<li class="blockListLast">
<h4>readResolve</h4>
<pre>protected <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a> readResolve()
throws <a href="https://docs.oracle.com/javase/8/docs/api/java/io/InvalidObjectException.html?is-external=true" title="class or interface in java.io">InvalidObjectException</a></pre>
<div class="block">Resolves instances being deserialized to the predefined constants.</div>
<dl>
<dt><span class="throwsLabel">Throws:</span></dt>
<dd><code><a href="https://docs.oracle.com/javase/8/docs/api/java/io/InvalidObjectException.html?is-external=true" title="class or interface in java.io">InvalidObjectException</a></code> - if the constant could not be resolved.</dd>
</dl>
</li>
</ul>
</li>
<li class="blockList">
<h3>Serialized Fields</h3>
<ul class="blockList">
<li class="blockListLast">
<h4>calendarField</h4>
<pre>int calendarField</pre>
</li>
</ul>
</li>
</ul>
</li>
<li class="blockList"><a name="com.ibm.icu.text.DateFormatSymbols">
<!-- -->
</a>
<h3>Class <a href="com/ibm/icu/text/DateFormatSymbols.html" title="class in com.ibm.icu.text">com.ibm.icu.text.DateFormatSymbols</a> extends <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a> implements Serializable</h3>
<dl class="nameValue">
<dt>serialVersionUID:</dt>
<dd>-5987973545549424702L</dd>
</dl>
<ul class="blockList">
<li class="blockList">
<h3>Serialization Methods</h3>
<ul class="blockList">
<li class="blockListLast">
<h4>readObject</h4>
<pre>private void readObject(<a href="https://docs.oracle.com/javase/8/docs/api/java/io/ObjectInputStream.html?is-external=true" title="class or interface in java.io">ObjectInputStream</a> stream)
throws <a href="https://docs.oracle.com/javase/8/docs/api/java/io/IOException.html?is-external=true" title="class or interface in java.io">IOException</a>,
<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/ClassNotFoundException.html?is-external=true" title="class or interface in java.lang">ClassNotFoundException</a></pre>
<div class="block">3.8 or older version did not have localized GMT format
patterns.</div>
<dl>
<dt><span class="throwsLabel">Throws:</span></dt>
<dd><code><a href="https://docs.oracle.com/javase/8/docs/api/java/io/IOException.html?is-external=true" title="class or interface in java.io">IOException</a></code></dd>
<dd><code><a href="https://docs.oracle.com/javase/8/docs/api/java/lang/ClassNotFoundException.html?is-external=true" title="class or interface in java.lang">ClassNotFoundException</a></code></dd>
</dl>
</li>
</ul>
</li>
<li class="blockList">
<h3>Serialized Fields</h3>
<ul class="blockList">
<li class="blockList">
<h4>eras</h4>
<pre><a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>[] eras</pre>
<div class="block">Era strings. For example: "AD" and "BC". An array of 2 strings,
indexed by <code>Calendar.BC</code> and <code>Calendar.AD</code>.</div>
</li>
<li class="blockList">
<h4>eraNames</h4>
<pre><a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>[] eraNames</pre>
<div class="block">Era name strings. For example: "Anno Domini" and "Before Christ". An array of 2 strings,
indexed by <code>Calendar.BC</code> and <code>Calendar.AD</code>.</div>
</li>
<li class="blockList">
<h4>narrowEras</h4>
<pre><a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>[] narrowEras</pre>
<div class="block">Narrow era names. For example: "A" and "B". An array of 2 strings,
indexed by <code>Calendar.BC</code> and <code>Calendar.AD</code>.</div>
</li>
<li class="blockList">
<h4>months</h4>
<pre><a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>[] months</pre>
<div class="block">Month strings. For example: "January", "February", etc. An array
of 13 strings (some calendars have 13 months), indexed by
<code>Calendar.JANUARY</code>, <code>Calendar.FEBRUARY</code>, etc.</div>
</li>
<li class="blockList">
<h4>shortMonths</h4>
<pre><a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>[] shortMonths</pre>
<div class="block">Short month strings. For example: "Jan", "Feb", etc. An array of
13 strings (some calendars have 13 months), indexed by
<code>Calendar.JANUARY</code>, <code>Calendar.FEBRUARY</code>, etc.</div>
</li>
<li class="blockList">
<h4>narrowMonths</h4>
<pre><a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>[] narrowMonths</pre>
<div class="block">Narrow month strings. For example: "J", "F", etc. An array of
13 strings (some calendars have 13 months), indexed by
<code>Calendar.JANUARY</code>, <code>Calendar.FEBRUARY</code>, etc.</div>
</li>
<li class="blockList">
<h4>standaloneMonths</h4>
<pre><a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>[] standaloneMonths</pre>
<div class="block">Standalone month strings. For example: "January", "February", etc. An array
of 13 strings (some calendars have 13 months), indexed by
<code>Calendar.JANUARY</code>, <code>Calendar.FEBRUARY</code>, etc.</div>
</li>
<li class="blockList">
<h4>standaloneShortMonths</h4>
<pre><a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>[] standaloneShortMonths</pre>
<div class="block">Standalone short month strings. For example: "Jan", "Feb", etc. An array of
13 strings (some calendars have 13 months), indexed by
<code>Calendar.JANUARY</code>, <code>Calendar.FEBRUARY</code>, etc.</div>
</li>
<li class="blockList">
<h4>standaloneNarrowMonths</h4>
<pre><a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>[] standaloneNarrowMonths</pre>
<div class="block">Standalone narrow month strings. For example: "J", "F", etc. An array of
13 strings (some calendars have 13 months), indexed by
<code>Calendar.JANUARY</code>, <code>Calendar.FEBRUARY</code>, etc.</div>
</li>
<li class="blockList">
<h4>weekdays</h4>
<pre><a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>[] weekdays</pre>
<div class="block">Format wide weekday strings, for example: "Sunday", "Monday", etc.
An array of 8 strings, indexed by <code>Calendar.SUNDAY</code>,
<code>Calendar.MONDAY</code>, etc.
The element <code>weekdays[0]</code> is ignored.</div>
</li>
<li class="blockList">
<h4>shortWeekdays</h4>
<pre><a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>[] shortWeekdays</pre>
<div class="block">CLDR-style format abbreviated (not short) weekday strings,
for example: "Sun", "Mon", etc.
An array of 8 strings, indexed by <code>Calendar.SUNDAY</code>,
<code>Calendar.MONDAY</code>, etc.
The element <code>shortWeekdays[0]</code> is ignored.</div>
</li>
<li class="blockList">
<h4>shorterWeekdays</h4>
<pre><a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>[] shorterWeekdays</pre>
<div class="block">CLDR-style format short weekday strings, for example: "Su", "Mo", etc.
An array of 8 strings, indexed by <code>Calendar.SUNDAY</code>,
<code>Calendar.MONDAY</code>, etc.
The element <code>shorterWeekdays[0]</code> is ignored.</div>
</li>
<li class="blockList">
<h4>narrowWeekdays</h4>
<pre><a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>[] narrowWeekdays</pre>
<div class="block">CLDR-style format narrow weekday strings, for example: "S", "M", etc.
An array of 8 strings, indexed by <code>Calendar.SUNDAY</code>,
<code>Calendar.MONDAY</code>, etc.
The element <code>narrowWeekdays[0]</code> is ignored.</div>
</li>
<li class="blockList">
<h4>standaloneWeekdays</h4>
<pre><a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>[] standaloneWeekdays</pre>
<div class="block">Standalone wide weekday strings. For example: "Sunday", "Monday", etc.
An array of 8 strings, indexed by <code>Calendar.SUNDAY</code>,
<code>Calendar.MONDAY</code>, etc.
The element <code>standaloneWeekdays[0]</code> is ignored.</div>
</li>
<li class="blockList">
<h4>standaloneShortWeekdays</h4>
<pre><a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>[] standaloneShortWeekdays</pre>
<div class="block">CLDR-style standalone abbreviated (not short) weekday strings,
for example: "Sun", "Mon", etc.
An array of 8 strings, indexed by <code>Calendar.SUNDAY</code>,
<code>Calendar.MONDAY</code>, etc.
The element <code>standaloneShortWeekdays[0]</code> is ignored.</div>
</li>
<li class="blockList">
<h4>standaloneShorterWeekdays</h4>
<pre><a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>[] standaloneShorterWeekdays</pre>
<div class="block">CLDR-style standalone short weekday strings, for example: "Sun", "Mon", etc.
An array of 8 strings, indexed by <code>Calendar.SUNDAY</code>,
<code>Calendar.MONDAY</code>, etc.
The element <code>standaloneShorterWeekdays[0]</code> is ignored.</div>
</li>
<li class="blockList">
<h4>standaloneNarrowWeekdays</h4>
<pre><a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>[] standaloneNarrowWeekdays</pre>
<div class="block">Standalone narrow weekday strings. For example: "S", "M", etc. An array
of 8 strings, indexed by <code>Calendar.SUNDAY</code>,
<code>Calendar.MONDAY</code>, etc.
The element <code>standaloneNarrowWeekdays[0]</code> is ignored.</div>
</li>
<li class="blockList">
<h4>ampms</h4>
<pre><a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>[] ampms</pre>
<div class="block">AM and PM strings. For example: "AM" and "PM". An array of
2 strings, indexed by <code>Calendar.AM</code> and
<code>Calendar.PM</code>.</div>
</li>
<li class="blockList">
<h4>ampmsNarrow</h4>
<pre><a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>[] ampmsNarrow</pre>
<div class="block">narrow AM and PM strings. For example: "a" and "p". An array of
2 strings, indexed by <code>Calendar.AM</code> and
<code>Calendar.PM</code>.</div>
</li>
<li class="blockList">
<h4>timeSeparator</h4>
<pre><a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> timeSeparator</pre>
<div class="block">Time separator string. For example: ":".</div>
</li>
<li class="blockList">
<h4>shortQuarters</h4>
<pre><a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>[] shortQuarters</pre>
<div class="block">Abbreviated quarter names. For example: "Q1", "Q2", "Q3", "Q4". An array
of 4 strings indexed by the month divided by 3.</div>
</li>
<li class="blockList">
<h4>narrowQuarters</h4>
<pre><a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>[] narrowQuarters</pre>
<div class="block">Narrow quarter names. For example: "1", "2", "3", "4". An array
of 4 strings indexed by the month divided by 3.</div>
</li>
<li class="blockList">
<h4>quarters</h4>
<pre><a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>[] quarters</pre>
<div class="block">Full quarter names. For example: "1st Quarter", "2nd Quarter", "3rd Quarter",
"4th Quarter". An array of 4 strings, indexed by the month divided by 3.</div>
</li>
<li class="blockList">
<h4>standaloneShortQuarters</h4>
<pre><a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>[] standaloneShortQuarters</pre>
<div class="block">Standalone abbreviated quarter names. For example: "Q1", "Q2", "Q3", "Q4". An array
of 4 strings indexed by the month divided by 3.</div>
</li>
<li class="blockList">
<h4>standaloneNarrowQuarters</h4>
<pre><a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>[] standaloneNarrowQuarters</pre>
<div class="block">Standalone narrow quarter names. For example: "1", "2", "3", "4". An array
of 4 strings indexed by the month divided by 3.</div>
</li>
<li class="blockList">
<h4>standaloneQuarters</h4>
<pre><a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>[] standaloneQuarters</pre>
<div class="block">Standalone full quarter names. For example: "1st Quarter", "2nd Quarter", "3rd Quarter",
"4th Quarter". An array of 4 strings, indexed by the month divided by 3.</div>
</li>
<li class="blockList">
<h4>leapMonthPatterns</h4>
<pre><a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>[] leapMonthPatterns</pre>
<div class="block">All leap month patterns, for example "{0}bis".
An array of DT_MONTH_PATTERN_COUNT strings, indexed by the DT_LEAP_MONTH_PATTERN_XXX value.</div>
</li>
<li class="blockList">
<h4>shortYearNames</h4>
<pre><a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>[] shortYearNames</pre>
<div class="block">Cyclic year names, for example: "jia-zi", "yi-chou", ... "gui-hai".
An array of (normally) 60 strings, corresponding to cyclic years 1-60 (in Calendar YEAR field).
Currently we only have data for format/abbreviated.
For the others, just get from format/abbreviated, ignore set.</div>
</li>
<li class="blockList">
<h4>shortZodiacNames</h4>
<pre><a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>[] shortZodiacNames</pre>
<div class="block">Cyclic zodiac names, for example: "Rat", "Ox", "Tiger", etc.
An array of (normally) 12 strings.
Currently we only have data for format/abbreviated.
For the others, just get from format/abbreviated, ignore set.</div>
</li>
<li class="blockList">
<h4>zoneStrings</h4>
<pre><a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>[][] zoneStrings</pre>
<div class="block">Localized names of time zones in this locale. This is a
two-dimensional array of strings of size <em>n</em> by <em>m</em>,
where <em>m</em> is at least 5 and up to 7. Each of the <em>n</em> rows is an
entry containing the localized names for a single <code>TimeZone</code>.
Each such row contains (with <code>i</code> ranging from
0..<em>n</em>-1):
<ul>
<li><code>zoneStrings[i][0]</code> - time zone ID</li>
<li><code>zoneStrings[i][1]</code> - long name of zone in standard
time</li>
<li><code>zoneStrings[i][2]</code> - short name of zone in
standard time</li>
<li><code>zoneStrings[i][3]</code> - long name of zone in daylight
savings time</li>
<li><code>zoneStrings[i][4]</code> - short name of zone in daylight
savings time</li>
<li><code>zoneStrings[i][5]</code> - location name of zone</li>
<li><code>zoneStrings[i][6]</code> - long generic name of zone</li>
<li><code>zoneStrings[i][7]</code> - short generic of zone</li>
</ul>
The zone ID is <em>not</em> localized; it corresponds to the ID
value associated with a system time zone object. All other entries
are localized names. If a zone does not implement daylight savings
time, the daylight savings time names are ignored.
<em>Note:</em>CLDR 1.5 introduced metazone and its historical mappings.
This simple two-dimensional array is no longer sufficient to represent
localized names and its historic changes. Since ICU 3.8.1, localized
zone names extracted from ICU locale data is stored in a ZoneStringFormat
instance. But we still need to support the old way of customizing
localized zone names, so we keep this field for the purpose.</div>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="com/ibm/icu/util/TimeZone.html" title="class in com.ibm.icu.util"><code>TimeZone</code></a></dd>
</dl>
</li>
<li class="blockList">
<h4>localPatternChars</h4>
<pre><a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> localPatternChars</pre>
<div class="block">Localized date-time pattern characters. For example, a locale may
wish to use 'u' rather than 'y' to represent years in its date format
pattern strings.
This string must be exactly 18 characters long, with the index of
the characters described by <code>DateFormat.ERA_FIELD</code>,
<code>DateFormat.YEAR_FIELD</code>, etc. Thus, if the string were
"Xz...", then localized patterns would use 'X' for era and 'z' for year.</div>
</li>
<li class="blockList">
<h4>abbreviatedDayPeriods</h4>
<pre><a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>[] abbreviatedDayPeriods</pre>
<div class="block">Localized names for abbreviated (== short) day periods.
An array of strings, in the order of DayPeriod constants.</div>
</li>
<li class="blockList">
<h4>wideDayPeriods</h4>
<pre><a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>[] wideDayPeriods</pre>
<div class="block">Localized names for wide day periods.
An array of strings, in the order of DayPeriod constants.</div>
</li>
<li class="blockList">
<h4>narrowDayPeriods</h4>
<pre><a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>[] narrowDayPeriods</pre>
<div class="block">Localized names for narrow day periods.
An array of strings, in the order of DayPeriod constants.</div>
</li>
<li class="blockList">
<h4>standaloneAbbreviatedDayPeriods</h4>
<pre><a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>[] standaloneAbbreviatedDayPeriods</pre>
<div class="block">Localized names for standalone abbreviated (== short) day periods.
An array of strings, in the order of DayPeriod constants.</div>
</li>
<li class="blockList">
<h4>standaloneWideDayPeriods</h4>
<pre><a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>[] standaloneWideDayPeriods</pre>
<div class="block">Localized names for standalone wide day periods.
An array of strings, in the order of DayPeriod constants.</div>
</li>
<li class="blockList">
<h4>standaloneNarrowDayPeriods</h4>
<pre><a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>[] standaloneNarrowDayPeriods</pre>
<div class="block">Localized names for standalone narrow day periods.
An array of strings, in the order of DayPeriod constants.</div>
</li>
<li class="blockList">
<h4>capitalization</h4>
<pre><a href="https://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true" title="class or interface in java.util">Map</a><<a href="https://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true" title="class or interface in java.util">K</a>,<a href="https://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true" title="class or interface in java.util">V</a>> capitalization</pre>
<div class="block">Capitalization transforms. For each usage type, the first array element indicates
whether to titlecase for uiListOrMenu context, the second indicates whether to
titlecase for stand-alone context.</div>
</li>
<li class="blockList">
<h4>requestedLocale</h4>
<pre><a href="com/ibm/icu/util/ULocale.html" title="class in com.ibm.icu.util">ULocale</a> requestedLocale</pre>
</li>
<li class="blockList">
<h4>validLocale</h4>
<pre><a href="com/ibm/icu/util/ULocale.html" title="class in com.ibm.icu.util">ULocale</a> validLocale</pre>
<div class="block">The most specific locale containing any resource data, or null.</div>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="com/ibm/icu/util/ULocale.html" title="class in com.ibm.icu.util"><code>ULocale</code></a></dd>
</dl>
</li>
<li class="blockListLast">
<h4>actualLocale</h4>
<pre><a href="com/ibm/icu/util/ULocale.html" title="class in com.ibm.icu.util">ULocale</a> actualLocale</pre>
<div class="block">The locale containing data used to construct this object, or
null.</div>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="com/ibm/icu/util/ULocale.html" title="class in com.ibm.icu.util"><code>ULocale</code></a></dd>
</dl>
</li>
</ul>
</li>
</ul>
</li>
<li class="blockList"><a name="com.ibm.icu.text.DateIntervalFormat">
<!-- -->
</a>
<h3>Class <a href="com/ibm/icu/text/DateIntervalFormat.html" title="class in com.ibm.icu.text">com.ibm.icu.text.DateIntervalFormat</a> extends <a href="com/ibm/icu/text/UFormat.html" title="class in com.ibm.icu.text">UFormat</a> implements Serializable</h3>
<dl class="nameValue">
<dt>serialVersionUID:</dt>
<dd>1L</dd>
</dl>
<ul class="blockList">
<li class="blockList">
<h3>Serialization Methods</h3>
<ul class="blockList">
<li class="blockListLast">
<h4>readObject</h4>
<pre>private void readObject(<a href="https://docs.oracle.com/javase/8/docs/api/java/io/ObjectInputStream.html?is-external=true" title="class or interface in java.io">ObjectInputStream</a> stream)
throws <a href="https://docs.oracle.com/javase/8/docs/api/java/io/IOException.html?is-external=true" title="class or interface in java.io">IOException</a>,
<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/ClassNotFoundException.html?is-external=true" title="class or interface in java.lang">ClassNotFoundException</a></pre>
<dl>
<dt><span class="throwsLabel">Throws:</span></dt>
<dd><code><a href="https://docs.oracle.com/javase/8/docs/api/java/io/IOException.html?is-external=true" title="class or interface in java.io">IOException</a></code></dd>
<dd><code><a href="https://docs.oracle.com/javase/8/docs/api/java/lang/ClassNotFoundException.html?is-external=true" title="class or interface in java.lang">ClassNotFoundException</a></code></dd>
</dl>
</li>
</ul>
</li>
<li class="blockList">
<h3>Serialized Fields</h3>
<ul class="blockList">
<li class="blockList">
<h4>fInfo</h4>
<pre><a href="com/ibm/icu/text/DateIntervalInfo.html" title="class in com.ibm.icu.text">DateIntervalInfo</a> fInfo</pre>
</li>
<li class="blockList">
<h4>fDateFormat</h4>
<pre><a href="com/ibm/icu/text/SimpleDateFormat.html" title="class in com.ibm.icu.text">SimpleDateFormat</a> fDateFormat</pre>
</li>
<li class="blockList">
<h4>fFromCalendar</h4>
<pre><a href="com/ibm/icu/util/Calendar.html" title="class in com.ibm.icu.util">Calendar</a> fFromCalendar</pre>
</li>
<li class="blockList">
<h4>fToCalendar</h4>
<pre><a href="com/ibm/icu/util/Calendar.html" title="class in com.ibm.icu.util">Calendar</a> fToCalendar</pre>
</li>
<li class="blockList">
<h4>fSkeleton</h4>
<pre><a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> fSkeleton</pre>
</li>
<li class="blockList">
<h4>isDateIntervalInfoDefault</h4>
<pre>boolean isDateIntervalInfoDefault</pre>
</li>
<li class="blockList">
<h4>fDatePattern</h4>
<pre><a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> fDatePattern</pre>
</li>
<li class="blockList">
<h4>fTimePattern</h4>
<pre><a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> fTimePattern</pre>
</li>
<li class="blockList">
<h4>fDateTimeFormat</h4>
<pre><a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> fDateTimeFormat</pre>
</li>
<li class="blockListLast">
<h4>fCapitalizationSetting</h4>
<pre><a href="com/ibm/icu/text/DisplayContext.html" title="enum in com.ibm.icu.text">DisplayContext</a> fCapitalizationSetting</pre>
</li>
</ul>
</li>
</ul>
</li>
<li class="blockList"><a name="com.ibm.icu.text.DateIntervalFormat.SpanField">
<!-- -->
</a>
<h3>Class <a href="com/ibm/icu/text/DateIntervalFormat.SpanField.html" title="class in com.ibm.icu.text">com.ibm.icu.text.DateIntervalFormat.SpanField</a> extends <a href="com/ibm/icu/text/UFormat.SpanField.html" title="class in com.ibm.icu.text">UFormat.SpanField</a> implements Serializable</h3>
<dl class="nameValue">
<dt>serialVersionUID:</dt>
<dd>-6330879259553618133L</dd>
</dl>
<ul class="blockList">
<li class="blockList">
<h3>Serialization Methods</h3>
<ul class="blockList">
<li class="blockListLast">
<h4>readResolve</h4>
<pre><a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Deprecated.html?is-external=true" title="class or interface in java.lang">@Deprecated</a>
protected <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a> readResolve()
throws <a href="https://docs.oracle.com/javase/8/docs/api/java/io/InvalidObjectException.html?is-external=true" title="class or interface in java.io">InvalidObjectException</a></pre>
<div class="block"><span class="deprecatedLabel">Deprecated.</span> <span class="deprecationComment">This API is ICU internal only.</span></div>
<div class="block">serialization method resolve instances to the constant
DateIntervalFormat.SpanField values</div>
<dl>
<dt><span class="throwsLabel">Throws:</span></dt>
<dd><code><a href="https://docs.oracle.com/javase/8/docs/api/java/io/InvalidObjectException.html?is-external=true" title="class or interface in java.io">InvalidObjectException</a></code></dd>
</dl>
</li>
</ul>
</li>
</ul>
</li>
<li class="blockList"><a name="com.ibm.icu.text.DateIntervalInfo">
<!-- -->
</a>
<h3>Class <a href="com/ibm/icu/text/DateIntervalInfo.html" title="class in com.ibm.icu.text">com.ibm.icu.text.DateIntervalInfo</a> extends <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a> implements Serializable</h3>
<dl class="nameValue">
<dt>serialVersionUID:</dt>
<dd>1L</dd>
</dl>
<ul class="blockList">
<li class="blockList">
<h3>Serialized Fields</h3>
<ul class="blockList">
<li class="blockList">
<h4>fFallbackIntervalPattern</h4>
<pre><a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> fFallbackIntervalPattern</pre>
</li>
<li class="blockList">
<h4>fFirstDateInPtnIsLaterDate</h4>
<pre>boolean fFirstDateInPtnIsLaterDate</pre>
</li>
<li class="blockListLast">
<h4>fIntervalPatterns</h4>
<pre><a href="https://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true" title="class or interface in java.util">Map</a><<a href="https://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true" title="class or interface in java.util">K</a>,<a href="https://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true" title="class or interface in java.util">V</a>> fIntervalPatterns</pre>
</li>
</ul>
</li>
</ul>
</li>
<li class="blockList"><a name="com.ibm.icu.text.DateIntervalInfo.PatternInfo">
<!-- -->
</a>
<h3>Class <a href="com/ibm/icu/text/DateIntervalInfo.PatternInfo.html" title="class in com.ibm.icu.text">com.ibm.icu.text.DateIntervalInfo.PatternInfo</a> extends <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a> implements Serializable</h3>
<dl class="nameValue">
<dt>serialVersionUID:</dt>
<dd>1L</dd>
</dl>
<ul class="blockList">
<li class="blockList">
<h3>Serialized Fields</h3>
<ul class="blockList">
<li class="blockList">
<h4>fIntervalPatternFirstPart</h4>
<pre><a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> fIntervalPatternFirstPart</pre>
</li>
<li class="blockList">