forked from unicode-org/icu-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
classDateFormatSymbols.html
2241 lines (2062 loc) · 143 KB
/
classDateFormatSymbols.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 XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=11"/>
<meta name="generator" content="Doxygen 1.9.4"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<title>ICU 74.1: icu::DateFormatSymbols Class Reference</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<link href="search/search.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="search/searchdata.js"></script>
<script type="text/javascript" src="search/search.js"></script>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr id="projectrow">
<td id="projectalign">
<div id="projectname">ICU 74.1<span id="projectnumber"> 74.1</span>
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.9.4 -->
<script type="text/javascript">
/* @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt MIT */
var searchBox = new SearchBox("searchBox", "search",'Search','.html');
/* @license-end */
</script>
<script type="text/javascript" src="menudata.js"></script>
<script type="text/javascript" src="menu.js"></script>
<script type="text/javascript">
/* @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt MIT */
$(function() {
initMenu('',true,false,'search.php','Search');
$(document).ready(function() { init_search(); });
});
/* @license-end */
</script>
<div id="main-nav"></div>
<!-- window showing the filter options -->
<div id="MSearchSelectWindow"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
onkeydown="return searchBox.OnSearchSelectKey(event)">
</div>
<!-- iframe showing the search results (closed by default) -->
<div id="MSearchResultsWindow">
<iframe src="javascript:void(0)" frameborder="0"
name="MSearchResults" id="MSearchResults">
</iframe>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><a class="el" href="namespaceicu.html">icu</a></li><li class="navelem"><a class="el" href="classicu_1_1DateFormatSymbols.html">DateFormatSymbols</a></li> </ul>
</div>
</div><!-- top -->
<div class="header">
<div class="summary">
<a href="#pub-types">Public Types</a> |
<a href="#pub-methods">Public Member Functions</a> |
<a href="#pub-static-methods">Static Public Member Functions</a> |
<a href="#pub-static-attribs">Static Public Attributes</a> |
<a href="#friends">Friends</a> </div>
<div class="headertitle"><div class="title">icu::DateFormatSymbols Class Reference<span class="mlabels"><span class="mlabel">final</span></span></div></div>
</div><!--header-->
<div class="contents">
<p><a class="el" href="classicu_1_1DateFormatSymbols.html" title="DateFormatSymbols is a public class for encapsulating localizable date-time formatting data – includi...">DateFormatSymbols</a> is a public class for encapsulating localizable date-time formatting data – including timezone data.
<a href="classicu_1_1DateFormatSymbols.html#details">More...</a></p>
<p><code>#include <<a class="el" href="dtfmtsym_8h_source.html">dtfmtsym.h</a>></code></p>
<div class="dynheader">
Inheritance diagram for icu::DateFormatSymbols:</div>
<div class="dyncontent">
<div class="center">
<img src="classicu_1_1DateFormatSymbols.png" usemap="#icu::DateFormatSymbols_map" alt=""/>
<map id="icu::DateFormatSymbols_map" name="icu::DateFormatSymbols_map">
<area href="classicu_1_1UObject.html" title="UObject is the common ICU "boilerplate" class." alt="icu::UObject" shape="rect" coords="0,56,147,80"/>
<area href="classicu_1_1UMemory.html" title="UMemory is the common ICU base class." alt="icu::UMemory" shape="rect" coords="0,0,147,24"/>
</map>
</div></div>
<table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a id="pub-types" name="pub-types"></a>
Public Types</h2></td></tr>
<tr class="memitem:ae129713471a20a5a418957de1ebd3470"><td class="memItemLeft" align="right" valign="top">enum  </td><td class="memItemRight" valign="bottom"><a class="el" href="classicu_1_1DateFormatSymbols.html#ae129713471a20a5a418957de1ebd3470">DtContextType</a> { <b>FORMAT</b>
, <b>STANDALONE</b>
, <a class="el" href="classicu_1_1DateFormatSymbols.html#ae129713471a20a5a418957de1ebd3470a90d80fd0f31f962b3a82b0f94f7271c5">DT_CONTEXT_COUNT</a>
}</td></tr>
<tr class="memdesc:ae129713471a20a5a418957de1ebd3470"><td class="mdescLeft"> </td><td class="mdescRight">Selector for date formatting context. <a href="classicu_1_1DateFormatSymbols.html#ae129713471a20a5a418957de1ebd3470">More...</a><br /></td></tr>
<tr class="separator:ae129713471a20a5a418957de1ebd3470"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a62956ffdbeeed74b970ab846362473de"><td class="memItemLeft" align="right" valign="top">enum  </td><td class="memItemRight" valign="bottom"><a class="el" href="classicu_1_1DateFormatSymbols.html#a62956ffdbeeed74b970ab846362473de">DtWidthType</a> { <br />
  <b>ABBREVIATED</b>
, <b>WIDE</b>
, <b>NARROW</b>
, <a class="el" href="classicu_1_1DateFormatSymbols.html#a62956ffdbeeed74b970ab846362473dea8ba791cced89bc4fd4bd86efcb1c05b8">SHORT</a>
, <br />
  <a class="el" href="classicu_1_1DateFormatSymbols.html#a62956ffdbeeed74b970ab846362473dea46ce5ece928f9afa5d97ec0b254eab2d">DT_WIDTH_COUNT</a> = 4
<br />
}</td></tr>
<tr class="memdesc:a62956ffdbeeed74b970ab846362473de"><td class="mdescLeft"> </td><td class="mdescRight">Selector for date formatting width. <a href="classicu_1_1DateFormatSymbols.html#a62956ffdbeeed74b970ab846362473de">More...</a><br /></td></tr>
<tr class="separator:a62956ffdbeeed74b970ab846362473de"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:af65d18b6442dbc4e36dd09c5515fcc52"><td class="memItemLeft" align="right" valign="top">enum  </td><td class="memItemRight" valign="bottom"><a class="el" href="classicu_1_1DateFormatSymbols.html#af65d18b6442dbc4e36dd09c5515fcc52">EMonthPatternType</a> { <br />
  <b>kLeapMonthPatternFormatWide</b>
, <b>kLeapMonthPatternFormatAbbrev</b>
, <b>kLeapMonthPatternFormatNarrow</b>
, <b>kLeapMonthPatternStandaloneWide</b>
, <br />
  <b>kLeapMonthPatternStandaloneAbbrev</b>
, <b>kLeapMonthPatternStandaloneNarrow</b>
, <b>kLeapMonthPatternNumeric</b>
, <b>kMonthPatternsCount</b>
<br />
}</td></tr>
<tr class="memdesc:af65d18b6442dbc4e36dd09c5515fcc52"><td class="mdescLeft"> </td><td class="mdescRight">Somewhat temporary constants for leap month pattern types, adequate for supporting just leap month patterns as needed for Chinese lunar calendar. <a href="classicu_1_1DateFormatSymbols.html#af65d18b6442dbc4e36dd09c5515fcc52">More...</a><br /></td></tr>
<tr class="separator:af65d18b6442dbc4e36dd09c5515fcc52"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ae79a31da5a90412bd5bf91b1c4d0392a"><td class="memItemLeft" align="right" valign="top">enum  </td><td class="memItemRight" valign="bottom"><a class="el" href="classicu_1_1DateFormatSymbols.html#ae79a31da5a90412bd5bf91b1c4d0392a">ECapitalizationContextUsageType</a> { <br />
  <b>kCapContextUsageOther</b> = 0
, <b>kCapContextUsageMonthFormat</b>
, <b>kCapContextUsageMonthStandalone</b>
, <b>kCapContextUsageMonthNarrow</b>
, <br />
  <b>kCapContextUsageDayFormat</b>
, <b>kCapContextUsageDayStandalone</b>
, <b>kCapContextUsageDayNarrow</b>
, <b>kCapContextUsageEraWide</b>
, <br />
  <b>kCapContextUsageEraAbbrev</b>
, <b>kCapContextUsageEraNarrow</b>
, <b>kCapContextUsageZoneLong</b>
, <b>kCapContextUsageZoneShort</b>
, <br />
  <b>kCapContextUsageMetazoneLong</b>
, <b>kCapContextUsageMetazoneShort</b>
, <b>kCapContextUsageTypeCount</b> = 14
<br />
}</td></tr>
<tr class="memdesc:ae79a31da5a90412bd5bf91b1c4d0392a"><td class="mdescLeft"> </td><td class="mdescRight">Constants for capitalization context usage types. <a href="classicu_1_1DateFormatSymbols.html#ae79a31da5a90412bd5bf91b1c4d0392a">More...</a><br /></td></tr>
<tr class="separator:ae79a31da5a90412bd5bf91b1c4d0392a"><td class="memSeparator" colspan="2"> </td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a id="pub-methods" name="pub-methods"></a>
Public Member Functions</h2></td></tr>
<tr class="memitem:a5c4adf58d489814bf54ad6898b685eb3"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classicu_1_1DateFormatSymbols.html#a5c4adf58d489814bf54ad6898b685eb3">DateFormatSymbols</a> (<a class="el" href="utypes_8h.html#a3343c1c8a8377277046774691c98d78c">UErrorCode</a> &status)</td></tr>
<tr class="memdesc:a5c4adf58d489814bf54ad6898b685eb3"><td class="mdescLeft"> </td><td class="mdescRight">Construct a <a class="el" href="classicu_1_1DateFormatSymbols.html" title="DateFormatSymbols is a public class for encapsulating localizable date-time formatting data – includi...">DateFormatSymbols</a> object by loading format data from resources for the default locale, in the default calendar (Gregorian). <a href="classicu_1_1DateFormatSymbols.html#a5c4adf58d489814bf54ad6898b685eb3">More...</a><br /></td></tr>
<tr class="separator:a5c4adf58d489814bf54ad6898b685eb3"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:af25969ba2758492adc5801883cf816df"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classicu_1_1DateFormatSymbols.html#af25969ba2758492adc5801883cf816df">DateFormatSymbols</a> (const <a class="el" href="classicu_1_1Locale.html">Locale</a> &locale, <a class="el" href="utypes_8h.html#a3343c1c8a8377277046774691c98d78c">UErrorCode</a> &status)</td></tr>
<tr class="memdesc:af25969ba2758492adc5801883cf816df"><td class="mdescLeft"> </td><td class="mdescRight">Construct a <a class="el" href="classicu_1_1DateFormatSymbols.html" title="DateFormatSymbols is a public class for encapsulating localizable date-time formatting data – includi...">DateFormatSymbols</a> object by loading format data from resources for the given locale, in the default calendar (Gregorian). <a href="classicu_1_1DateFormatSymbols.html#af25969ba2758492adc5801883cf816df">More...</a><br /></td></tr>
<tr class="separator:af25969ba2758492adc5801883cf816df"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a319701571d6c6294a472d2a9245fe5d9"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classicu_1_1DateFormatSymbols.html#a319701571d6c6294a472d2a9245fe5d9">DateFormatSymbols</a> (const char *type, <a class="el" href="utypes_8h.html#a3343c1c8a8377277046774691c98d78c">UErrorCode</a> &status)</td></tr>
<tr class="memdesc:a319701571d6c6294a472d2a9245fe5d9"><td class="mdescLeft"> </td><td class="mdescRight">Construct a <a class="el" href="classicu_1_1DateFormatSymbols.html" title="DateFormatSymbols is a public class for encapsulating localizable date-time formatting data – includi...">DateFormatSymbols</a> object by loading format data from resources for the default locale, in the default calendar (Gregorian). <a href="classicu_1_1DateFormatSymbols.html#a319701571d6c6294a472d2a9245fe5d9">More...</a><br /></td></tr>
<tr class="separator:a319701571d6c6294a472d2a9245fe5d9"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a9b015fbde5bb9b9d7f9a879ee2d8ef0d"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classicu_1_1DateFormatSymbols.html#a9b015fbde5bb9b9d7f9a879ee2d8ef0d">DateFormatSymbols</a> (const <a class="el" href="classicu_1_1Locale.html">Locale</a> &locale, const char *type, <a class="el" href="utypes_8h.html#a3343c1c8a8377277046774691c98d78c">UErrorCode</a> &status)</td></tr>
<tr class="memdesc:a9b015fbde5bb9b9d7f9a879ee2d8ef0d"><td class="mdescLeft"> </td><td class="mdescRight">Construct a <a class="el" href="classicu_1_1DateFormatSymbols.html" title="DateFormatSymbols is a public class for encapsulating localizable date-time formatting data – includi...">DateFormatSymbols</a> object by loading format data from resources for the given locale, in the default calendar (Gregorian). <a href="classicu_1_1DateFormatSymbols.html#a9b015fbde5bb9b9d7f9a879ee2d8ef0d">More...</a><br /></td></tr>
<tr class="separator:a9b015fbde5bb9b9d7f9a879ee2d8ef0d"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aafcf28ece0e7c3d9ffd7ed1ca575987b"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classicu_1_1DateFormatSymbols.html#aafcf28ece0e7c3d9ffd7ed1ca575987b">DateFormatSymbols</a> (const <a class="el" href="classicu_1_1DateFormatSymbols.html">DateFormatSymbols</a> &)</td></tr>
<tr class="memdesc:aafcf28ece0e7c3d9ffd7ed1ca575987b"><td class="mdescLeft"> </td><td class="mdescRight">Copy constructor. <a href="classicu_1_1DateFormatSymbols.html#aafcf28ece0e7c3d9ffd7ed1ca575987b">More...</a><br /></td></tr>
<tr class="separator:aafcf28ece0e7c3d9ffd7ed1ca575987b"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a6514f74808b41536632e0967f584e1f0"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classicu_1_1DateFormatSymbols.html">DateFormatSymbols</a> & </td><td class="memItemRight" valign="bottom"><a class="el" href="classicu_1_1DateFormatSymbols.html#a6514f74808b41536632e0967f584e1f0">operator=</a> (const <a class="el" href="classicu_1_1DateFormatSymbols.html">DateFormatSymbols</a> &)</td></tr>
<tr class="memdesc:a6514f74808b41536632e0967f584e1f0"><td class="mdescLeft"> </td><td class="mdescRight">Assignment operator. <a href="classicu_1_1DateFormatSymbols.html#a6514f74808b41536632e0967f584e1f0">More...</a><br /></td></tr>
<tr class="separator:a6514f74808b41536632e0967f584e1f0"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:acb678c367aaf05b979f39b2d4c2067df"><td class="memItemLeft" align="right" valign="top">virtual </td><td class="memItemRight" valign="bottom"><a class="el" href="classicu_1_1DateFormatSymbols.html#acb678c367aaf05b979f39b2d4c2067df">~DateFormatSymbols</a> ()</td></tr>
<tr class="memdesc:acb678c367aaf05b979f39b2d4c2067df"><td class="mdescLeft"> </td><td class="mdescRight">Destructor. <a href="classicu_1_1DateFormatSymbols.html#acb678c367aaf05b979f39b2d4c2067df">More...</a><br /></td></tr>
<tr class="separator:acb678c367aaf05b979f39b2d4c2067df"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aaad56c492f959e61e1300ff641a8f8bf"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classicu_1_1DateFormatSymbols.html#aaad56c492f959e61e1300ff641a8f8bf">operator==</a> (const <a class="el" href="classicu_1_1DateFormatSymbols.html">DateFormatSymbols</a> &other) const</td></tr>
<tr class="memdesc:aaad56c492f959e61e1300ff641a8f8bf"><td class="mdescLeft"> </td><td class="mdescRight">Return true if another object is semantically equal to this one. <a href="classicu_1_1DateFormatSymbols.html#aaad56c492f959e61e1300ff641a8f8bf">More...</a><br /></td></tr>
<tr class="separator:aaad56c492f959e61e1300ff641a8f8bf"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a5bf6890562aeeee23e6439d561418987"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classicu_1_1DateFormatSymbols.html#a5bf6890562aeeee23e6439d561418987">operator!=</a> (const <a class="el" href="classicu_1_1DateFormatSymbols.html">DateFormatSymbols</a> &other) const</td></tr>
<tr class="memdesc:a5bf6890562aeeee23e6439d561418987"><td class="mdescLeft"> </td><td class="mdescRight">Return true if another object is semantically unequal to this one. <a href="classicu_1_1DateFormatSymbols.html#a5bf6890562aeeee23e6439d561418987">More...</a><br /></td></tr>
<tr class="separator:a5bf6890562aeeee23e6439d561418987"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aeb40cb69dd4f9e839baadddfe328e09e"><td class="memItemLeft" align="right" valign="top">const <a class="el" href="classicu_1_1UnicodeString.html">UnicodeString</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classicu_1_1DateFormatSymbols.html#aeb40cb69dd4f9e839baadddfe328e09e">getEras</a> (int32_t &count) const</td></tr>
<tr class="memdesc:aeb40cb69dd4f9e839baadddfe328e09e"><td class="mdescLeft"> </td><td class="mdescRight">Gets abbreviated era strings. <a href="classicu_1_1DateFormatSymbols.html#aeb40cb69dd4f9e839baadddfe328e09e">More...</a><br /></td></tr>
<tr class="separator:aeb40cb69dd4f9e839baadddfe328e09e"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a54a58bf7c8fa7e598c62a5038ba6b0b7"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classicu_1_1DateFormatSymbols.html#a54a58bf7c8fa7e598c62a5038ba6b0b7">setEras</a> (const <a class="el" href="classicu_1_1UnicodeString.html">UnicodeString</a> *eras, int32_t count)</td></tr>
<tr class="memdesc:a54a58bf7c8fa7e598c62a5038ba6b0b7"><td class="mdescLeft"> </td><td class="mdescRight">Sets abbreviated era strings. <a href="classicu_1_1DateFormatSymbols.html#a54a58bf7c8fa7e598c62a5038ba6b0b7">More...</a><br /></td></tr>
<tr class="separator:a54a58bf7c8fa7e598c62a5038ba6b0b7"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a58f9323cb5441ce7ac11c523fab25ca5"><td class="memItemLeft" align="right" valign="top">const <a class="el" href="classicu_1_1UnicodeString.html">UnicodeString</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classicu_1_1DateFormatSymbols.html#a58f9323cb5441ce7ac11c523fab25ca5">getEraNames</a> (int32_t &count) const</td></tr>
<tr class="memdesc:a58f9323cb5441ce7ac11c523fab25ca5"><td class="mdescLeft"> </td><td class="mdescRight">Gets era name strings. <a href="classicu_1_1DateFormatSymbols.html#a58f9323cb5441ce7ac11c523fab25ca5">More...</a><br /></td></tr>
<tr class="separator:a58f9323cb5441ce7ac11c523fab25ca5"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ab2ec1be9849e1ff387c2b1d628f6cc0e"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classicu_1_1DateFormatSymbols.html#ab2ec1be9849e1ff387c2b1d628f6cc0e">setEraNames</a> (const <a class="el" href="classicu_1_1UnicodeString.html">UnicodeString</a> *eraNames, int32_t count)</td></tr>
<tr class="memdesc:ab2ec1be9849e1ff387c2b1d628f6cc0e"><td class="mdescLeft"> </td><td class="mdescRight">Sets era name strings. <a href="classicu_1_1DateFormatSymbols.html#ab2ec1be9849e1ff387c2b1d628f6cc0e">More...</a><br /></td></tr>
<tr class="separator:ab2ec1be9849e1ff387c2b1d628f6cc0e"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a9438c758a39f5221cea57cdd6b7a00dc"><td class="memItemLeft" align="right" valign="top">const <a class="el" href="classicu_1_1UnicodeString.html">UnicodeString</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classicu_1_1DateFormatSymbols.html#a9438c758a39f5221cea57cdd6b7a00dc">getNarrowEras</a> (int32_t &count) const</td></tr>
<tr class="memdesc:a9438c758a39f5221cea57cdd6b7a00dc"><td class="mdescLeft"> </td><td class="mdescRight">Gets narrow era strings. <a href="classicu_1_1DateFormatSymbols.html#a9438c758a39f5221cea57cdd6b7a00dc">More...</a><br /></td></tr>
<tr class="separator:a9438c758a39f5221cea57cdd6b7a00dc"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aa293ef753ff245e78279e8bfe13bf947"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classicu_1_1DateFormatSymbols.html#aa293ef753ff245e78279e8bfe13bf947">setNarrowEras</a> (const <a class="el" href="classicu_1_1UnicodeString.html">UnicodeString</a> *narrowEras, int32_t count)</td></tr>
<tr class="memdesc:aa293ef753ff245e78279e8bfe13bf947"><td class="mdescLeft"> </td><td class="mdescRight">Sets narrow era strings. <a href="classicu_1_1DateFormatSymbols.html#aa293ef753ff245e78279e8bfe13bf947">More...</a><br /></td></tr>
<tr class="separator:aa293ef753ff245e78279e8bfe13bf947"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a66ccd1c5146d81fc0ae8dde9618bf803"><td class="memItemLeft" align="right" valign="top">const <a class="el" href="classicu_1_1UnicodeString.html">UnicodeString</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classicu_1_1DateFormatSymbols.html#a66ccd1c5146d81fc0ae8dde9618bf803">getMonths</a> (int32_t &count) const</td></tr>
<tr class="memdesc:a66ccd1c5146d81fc0ae8dde9618bf803"><td class="mdescLeft"> </td><td class="mdescRight">Gets month strings. <a href="classicu_1_1DateFormatSymbols.html#a66ccd1c5146d81fc0ae8dde9618bf803">More...</a><br /></td></tr>
<tr class="separator:a66ccd1c5146d81fc0ae8dde9618bf803"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad688e477e7ea570dddcd48dceb5eeccf"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classicu_1_1DateFormatSymbols.html#ad688e477e7ea570dddcd48dceb5eeccf">setMonths</a> (const <a class="el" href="classicu_1_1UnicodeString.html">UnicodeString</a> *months, int32_t count)</td></tr>
<tr class="memdesc:ad688e477e7ea570dddcd48dceb5eeccf"><td class="mdescLeft"> </td><td class="mdescRight">Sets month strings. <a href="classicu_1_1DateFormatSymbols.html#ad688e477e7ea570dddcd48dceb5eeccf">More...</a><br /></td></tr>
<tr class="separator:ad688e477e7ea570dddcd48dceb5eeccf"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a39a4007b4d66aa0e88eb1f4754d8c801"><td class="memItemLeft" align="right" valign="top">const <a class="el" href="classicu_1_1UnicodeString.html">UnicodeString</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classicu_1_1DateFormatSymbols.html#a39a4007b4d66aa0e88eb1f4754d8c801">getShortMonths</a> (int32_t &count) const</td></tr>
<tr class="memdesc:a39a4007b4d66aa0e88eb1f4754d8c801"><td class="mdescLeft"> </td><td class="mdescRight">Gets short month strings. <a href="classicu_1_1DateFormatSymbols.html#a39a4007b4d66aa0e88eb1f4754d8c801">More...</a><br /></td></tr>
<tr class="separator:a39a4007b4d66aa0e88eb1f4754d8c801"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a22e50f821a039f89921f1858439dae46"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classicu_1_1DateFormatSymbols.html#a22e50f821a039f89921f1858439dae46">setShortMonths</a> (const <a class="el" href="classicu_1_1UnicodeString.html">UnicodeString</a> *shortMonths, int32_t count)</td></tr>
<tr class="memdesc:a22e50f821a039f89921f1858439dae46"><td class="mdescLeft"> </td><td class="mdescRight">Sets short month strings. <a href="classicu_1_1DateFormatSymbols.html#a22e50f821a039f89921f1858439dae46">More...</a><br /></td></tr>
<tr class="separator:a22e50f821a039f89921f1858439dae46"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a89da7cc1228609faa1577c823cdc45d1"><td class="memItemLeft" align="right" valign="top">const <a class="el" href="classicu_1_1UnicodeString.html">UnicodeString</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classicu_1_1DateFormatSymbols.html#a89da7cc1228609faa1577c823cdc45d1">getMonths</a> (int32_t &count, <a class="el" href="classicu_1_1DateFormatSymbols.html#ae129713471a20a5a418957de1ebd3470">DtContextType</a> context, <a class="el" href="classicu_1_1DateFormatSymbols.html#a62956ffdbeeed74b970ab846362473de">DtWidthType</a> width) const</td></tr>
<tr class="memdesc:a89da7cc1228609faa1577c823cdc45d1"><td class="mdescLeft"> </td><td class="mdescRight">Gets month strings by width and context. <a href="classicu_1_1DateFormatSymbols.html#a89da7cc1228609faa1577c823cdc45d1">More...</a><br /></td></tr>
<tr class="separator:a89da7cc1228609faa1577c823cdc45d1"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ab8e6949b4b2aad4d46b35d18f99dffa8"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classicu_1_1DateFormatSymbols.html#ab8e6949b4b2aad4d46b35d18f99dffa8">setMonths</a> (const <a class="el" href="classicu_1_1UnicodeString.html">UnicodeString</a> *months, int32_t count, <a class="el" href="classicu_1_1DateFormatSymbols.html#ae129713471a20a5a418957de1ebd3470">DtContextType</a> context, <a class="el" href="classicu_1_1DateFormatSymbols.html#a62956ffdbeeed74b970ab846362473de">DtWidthType</a> width)</td></tr>
<tr class="memdesc:ab8e6949b4b2aad4d46b35d18f99dffa8"><td class="mdescLeft"> </td><td class="mdescRight">Sets month strings by width and context. <a href="classicu_1_1DateFormatSymbols.html#ab8e6949b4b2aad4d46b35d18f99dffa8">More...</a><br /></td></tr>
<tr class="separator:ab8e6949b4b2aad4d46b35d18f99dffa8"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:af13671142622bc629a949609c210c1df"><td class="memItemLeft" align="right" valign="top">const <a class="el" href="classicu_1_1UnicodeString.html">UnicodeString</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classicu_1_1DateFormatSymbols.html#af13671142622bc629a949609c210c1df">getWeekdays</a> (int32_t &count) const</td></tr>
<tr class="memdesc:af13671142622bc629a949609c210c1df"><td class="mdescLeft"> </td><td class="mdescRight">Gets wide weekday strings. <a href="classicu_1_1DateFormatSymbols.html#af13671142622bc629a949609c210c1df">More...</a><br /></td></tr>
<tr class="separator:af13671142622bc629a949609c210c1df"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a1fcc232dc64658ef712b809a5e4a4f36"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classicu_1_1DateFormatSymbols.html#a1fcc232dc64658ef712b809a5e4a4f36">setWeekdays</a> (const <a class="el" href="classicu_1_1UnicodeString.html">UnicodeString</a> *weekdays, int32_t count)</td></tr>
<tr class="memdesc:a1fcc232dc64658ef712b809a5e4a4f36"><td class="mdescLeft"> </td><td class="mdescRight">Sets wide weekday strings. <a href="classicu_1_1DateFormatSymbols.html#a1fcc232dc64658ef712b809a5e4a4f36">More...</a><br /></td></tr>
<tr class="separator:a1fcc232dc64658ef712b809a5e4a4f36"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a405603fc12bb412e319322ca4c62a4ba"><td class="memItemLeft" align="right" valign="top">const <a class="el" href="classicu_1_1UnicodeString.html">UnicodeString</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classicu_1_1DateFormatSymbols.html#a405603fc12bb412e319322ca4c62a4ba">getShortWeekdays</a> (int32_t &count) const</td></tr>
<tr class="memdesc:a405603fc12bb412e319322ca4c62a4ba"><td class="mdescLeft"> </td><td class="mdescRight">Gets abbreviated weekday strings. <a href="classicu_1_1DateFormatSymbols.html#a405603fc12bb412e319322ca4c62a4ba">More...</a><br /></td></tr>
<tr class="separator:a405603fc12bb412e319322ca4c62a4ba"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a71140d1fc12ca2912fdef3c9c3d2b2a4"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classicu_1_1DateFormatSymbols.html#a71140d1fc12ca2912fdef3c9c3d2b2a4">setShortWeekdays</a> (const <a class="el" href="classicu_1_1UnicodeString.html">UnicodeString</a> *abbrevWeekdays, int32_t count)</td></tr>
<tr class="memdesc:a71140d1fc12ca2912fdef3c9c3d2b2a4"><td class="mdescLeft"> </td><td class="mdescRight">Sets abbreviated weekday strings. <a href="classicu_1_1DateFormatSymbols.html#a71140d1fc12ca2912fdef3c9c3d2b2a4">More...</a><br /></td></tr>
<tr class="separator:a71140d1fc12ca2912fdef3c9c3d2b2a4"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a37a206f22011bf1abdbd9cca8866dd47"><td class="memItemLeft" align="right" valign="top">const <a class="el" href="classicu_1_1UnicodeString.html">UnicodeString</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classicu_1_1DateFormatSymbols.html#a37a206f22011bf1abdbd9cca8866dd47">getWeekdays</a> (int32_t &count, <a class="el" href="classicu_1_1DateFormatSymbols.html#ae129713471a20a5a418957de1ebd3470">DtContextType</a> context, <a class="el" href="classicu_1_1DateFormatSymbols.html#a62956ffdbeeed74b970ab846362473de">DtWidthType</a> width) const</td></tr>
<tr class="memdesc:a37a206f22011bf1abdbd9cca8866dd47"><td class="mdescLeft"> </td><td class="mdescRight">Gets weekday strings by width and context. <a href="classicu_1_1DateFormatSymbols.html#a37a206f22011bf1abdbd9cca8866dd47">More...</a><br /></td></tr>
<tr class="separator:a37a206f22011bf1abdbd9cca8866dd47"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad9e24624fcfb084cfbf372bc2ed2e284"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classicu_1_1DateFormatSymbols.html#ad9e24624fcfb084cfbf372bc2ed2e284">setWeekdays</a> (const <a class="el" href="classicu_1_1UnicodeString.html">UnicodeString</a> *weekdays, int32_t count, <a class="el" href="classicu_1_1DateFormatSymbols.html#ae129713471a20a5a418957de1ebd3470">DtContextType</a> context, <a class="el" href="classicu_1_1DateFormatSymbols.html#a62956ffdbeeed74b970ab846362473de">DtWidthType</a> width)</td></tr>
<tr class="memdesc:ad9e24624fcfb084cfbf372bc2ed2e284"><td class="mdescLeft"> </td><td class="mdescRight">Sets weekday strings by width and context. <a href="classicu_1_1DateFormatSymbols.html#ad9e24624fcfb084cfbf372bc2ed2e284">More...</a><br /></td></tr>
<tr class="separator:ad9e24624fcfb084cfbf372bc2ed2e284"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a8dace98085c642463b09e53e3973a9b8"><td class="memItemLeft" align="right" valign="top">const <a class="el" href="classicu_1_1UnicodeString.html">UnicodeString</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classicu_1_1DateFormatSymbols.html#a8dace98085c642463b09e53e3973a9b8">getQuarters</a> (int32_t &count, <a class="el" href="classicu_1_1DateFormatSymbols.html#ae129713471a20a5a418957de1ebd3470">DtContextType</a> context, <a class="el" href="classicu_1_1DateFormatSymbols.html#a62956ffdbeeed74b970ab846362473de">DtWidthType</a> width) const</td></tr>
<tr class="memdesc:a8dace98085c642463b09e53e3973a9b8"><td class="mdescLeft"> </td><td class="mdescRight">Gets quarter strings by width and context. <a href="classicu_1_1DateFormatSymbols.html#a8dace98085c642463b09e53e3973a9b8">More...</a><br /></td></tr>
<tr class="separator:a8dace98085c642463b09e53e3973a9b8"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a598b333fcc15008e9f910d7bc0205edc"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classicu_1_1DateFormatSymbols.html#a598b333fcc15008e9f910d7bc0205edc">setQuarters</a> (const <a class="el" href="classicu_1_1UnicodeString.html">UnicodeString</a> *quarters, int32_t count, <a class="el" href="classicu_1_1DateFormatSymbols.html#ae129713471a20a5a418957de1ebd3470">DtContextType</a> context, <a class="el" href="classicu_1_1DateFormatSymbols.html#a62956ffdbeeed74b970ab846362473de">DtWidthType</a> width)</td></tr>
<tr class="memdesc:a598b333fcc15008e9f910d7bc0205edc"><td class="mdescLeft"> </td><td class="mdescRight">Sets quarter strings by width and context. <a href="classicu_1_1DateFormatSymbols.html#a598b333fcc15008e9f910d7bc0205edc">More...</a><br /></td></tr>
<tr class="separator:a598b333fcc15008e9f910d7bc0205edc"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a2222b8cff67d4fe70fc7c3ab8c8ad2ba"><td class="memItemLeft" align="right" valign="top">const <a class="el" href="classicu_1_1UnicodeString.html">UnicodeString</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classicu_1_1DateFormatSymbols.html#a2222b8cff67d4fe70fc7c3ab8c8ad2ba">getAmPmStrings</a> (int32_t &count) const</td></tr>
<tr class="memdesc:a2222b8cff67d4fe70fc7c3ab8c8ad2ba"><td class="mdescLeft"> </td><td class="mdescRight">Gets AM/PM strings. <a href="classicu_1_1DateFormatSymbols.html#a2222b8cff67d4fe70fc7c3ab8c8ad2ba">More...</a><br /></td></tr>
<tr class="separator:a2222b8cff67d4fe70fc7c3ab8c8ad2ba"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a61cb110df3b89aa7072be6578ca67bae"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classicu_1_1DateFormatSymbols.html#a61cb110df3b89aa7072be6578ca67bae">setAmPmStrings</a> (const <a class="el" href="classicu_1_1UnicodeString.html">UnicodeString</a> *ampms, int32_t count)</td></tr>
<tr class="memdesc:a61cb110df3b89aa7072be6578ca67bae"><td class="mdescLeft"> </td><td class="mdescRight">Sets ampm strings. <a href="classicu_1_1DateFormatSymbols.html#a61cb110df3b89aa7072be6578ca67bae">More...</a><br /></td></tr>
<tr class="separator:a61cb110df3b89aa7072be6578ca67bae"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a10d43a3d182a418fc3fa5871f20233ec"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classicu_1_1UnicodeString.html">UnicodeString</a> & </td><td class="memItemRight" valign="bottom"><a class="el" href="classicu_1_1DateFormatSymbols.html#a10d43a3d182a418fc3fa5871f20233ec">getTimeSeparatorString</a> (<a class="el" href="classicu_1_1UnicodeString.html">UnicodeString</a> &result) const</td></tr>
<tr class="memdesc:a10d43a3d182a418fc3fa5871f20233ec"><td class="mdescLeft"> </td><td class="mdescRight">Gets the time separator string. <a href="classicu_1_1DateFormatSymbols.html#a10d43a3d182a418fc3fa5871f20233ec">More...</a><br /></td></tr>
<tr class="separator:a10d43a3d182a418fc3fa5871f20233ec"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ab99b016019eccd7725268fbe36bff7b4"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classicu_1_1DateFormatSymbols.html#ab99b016019eccd7725268fbe36bff7b4">setTimeSeparatorString</a> (const <a class="el" href="classicu_1_1UnicodeString.html">UnicodeString</a> &newTimeSeparator)</td></tr>
<tr class="memdesc:ab99b016019eccd7725268fbe36bff7b4"><td class="mdescLeft"> </td><td class="mdescRight">Sets the time separator string. <a href="classicu_1_1DateFormatSymbols.html#ab99b016019eccd7725268fbe36bff7b4">More...</a><br /></td></tr>
<tr class="separator:ab99b016019eccd7725268fbe36bff7b4"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ae5d5a7749346e3434b9b2cc95ca1a6ab"><td class="memItemLeft" align="right" valign="top">const <a class="el" href="classicu_1_1UnicodeString.html">UnicodeString</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classicu_1_1DateFormatSymbols.html#ae5d5a7749346e3434b9b2cc95ca1a6ab">getYearNames</a> (int32_t &count, <a class="el" href="classicu_1_1DateFormatSymbols.html#ae129713471a20a5a418957de1ebd3470">DtContextType</a> context, <a class="el" href="classicu_1_1DateFormatSymbols.html#a62956ffdbeeed74b970ab846362473de">DtWidthType</a> width) const</td></tr>
<tr class="memdesc:ae5d5a7749346e3434b9b2cc95ca1a6ab"><td class="mdescLeft"> </td><td class="mdescRight">Gets cyclic year name strings if the calendar has them, by width and context. <a href="classicu_1_1DateFormatSymbols.html#ae5d5a7749346e3434b9b2cc95ca1a6ab">More...</a><br /></td></tr>
<tr class="separator:ae5d5a7749346e3434b9b2cc95ca1a6ab"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a135a801646d3c36a6875b5b393aff9a9"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classicu_1_1DateFormatSymbols.html#a135a801646d3c36a6875b5b393aff9a9">setYearNames</a> (const <a class="el" href="classicu_1_1UnicodeString.html">UnicodeString</a> *yearNames, int32_t count, <a class="el" href="classicu_1_1DateFormatSymbols.html#ae129713471a20a5a418957de1ebd3470">DtContextType</a> context, <a class="el" href="classicu_1_1DateFormatSymbols.html#a62956ffdbeeed74b970ab846362473de">DtWidthType</a> width)</td></tr>
<tr class="memdesc:a135a801646d3c36a6875b5b393aff9a9"><td class="mdescLeft"> </td><td class="mdescRight">Sets cyclic year name strings by width and context. <a href="classicu_1_1DateFormatSymbols.html#a135a801646d3c36a6875b5b393aff9a9">More...</a><br /></td></tr>
<tr class="separator:a135a801646d3c36a6875b5b393aff9a9"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a3acd22e6b49867d45e1f063b746a9b30"><td class="memItemLeft" align="right" valign="top">const <a class="el" href="classicu_1_1UnicodeString.html">UnicodeString</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classicu_1_1DateFormatSymbols.html#a3acd22e6b49867d45e1f063b746a9b30">getZodiacNames</a> (int32_t &count, <a class="el" href="classicu_1_1DateFormatSymbols.html#ae129713471a20a5a418957de1ebd3470">DtContextType</a> context, <a class="el" href="classicu_1_1DateFormatSymbols.html#a62956ffdbeeed74b970ab846362473de">DtWidthType</a> width) const</td></tr>
<tr class="memdesc:a3acd22e6b49867d45e1f063b746a9b30"><td class="mdescLeft"> </td><td class="mdescRight">Gets calendar zodiac name strings if the calendar has them, by width and context. <a href="classicu_1_1DateFormatSymbols.html#a3acd22e6b49867d45e1f063b746a9b30">More...</a><br /></td></tr>
<tr class="separator:a3acd22e6b49867d45e1f063b746a9b30"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:abb059f467fd62aeb7fd57d675b5b52a2"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classicu_1_1DateFormatSymbols.html#abb059f467fd62aeb7fd57d675b5b52a2">setZodiacNames</a> (const <a class="el" href="classicu_1_1UnicodeString.html">UnicodeString</a> *zodiacNames, int32_t count, <a class="el" href="classicu_1_1DateFormatSymbols.html#ae129713471a20a5a418957de1ebd3470">DtContextType</a> context, <a class="el" href="classicu_1_1DateFormatSymbols.html#a62956ffdbeeed74b970ab846362473de">DtWidthType</a> width)</td></tr>
<tr class="memdesc:abb059f467fd62aeb7fd57d675b5b52a2"><td class="mdescLeft"> </td><td class="mdescRight">Sets calendar zodiac name strings by width and context. <a href="classicu_1_1DateFormatSymbols.html#abb059f467fd62aeb7fd57d675b5b52a2">More...</a><br /></td></tr>
<tr class="separator:abb059f467fd62aeb7fd57d675b5b52a2"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aae847ed158dbc952372555f62a5c200b"><td class="memItemLeft" align="right" valign="top">const <a class="el" href="classicu_1_1UnicodeString.html">UnicodeString</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classicu_1_1DateFormatSymbols.html#aae847ed158dbc952372555f62a5c200b">getLeapMonthPatterns</a> (int32_t &count) const</td></tr>
<tr class="memdesc:aae847ed158dbc952372555f62a5c200b"><td class="mdescLeft"> </td><td class="mdescRight">Somewhat temporary function for getting complete set of leap month patterns for all contexts & widths, indexed by EMonthPatternType values. <a href="classicu_1_1DateFormatSymbols.html#aae847ed158dbc952372555f62a5c200b">More...</a><br /></td></tr>
<tr class="separator:aae847ed158dbc952372555f62a5c200b"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a2e33c7026774b416c6765271569a5bf1"><td class="memItemLeft" align="right" valign="top">const <a class="el" href="classicu_1_1UnicodeString.html">UnicodeString</a> ** </td><td class="memItemRight" valign="bottom"><a class="el" href="classicu_1_1DateFormatSymbols.html#a2e33c7026774b416c6765271569a5bf1">getZoneStrings</a> (int32_t &rowCount, int32_t &columnCount) const</td></tr>
<tr class="memdesc:a2e33c7026774b416c6765271569a5bf1"><td class="mdescLeft"> </td><td class="mdescRight">Gets timezone strings. <a href="classicu_1_1DateFormatSymbols.html#a2e33c7026774b416c6765271569a5bf1">More...</a><br /></td></tr>
<tr class="separator:a2e33c7026774b416c6765271569a5bf1"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aa22fb003f9cb7b8557f5e35419cb4d9a"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classicu_1_1DateFormatSymbols.html#aa22fb003f9cb7b8557f5e35419cb4d9a">setZoneStrings</a> (const <a class="el" href="classicu_1_1UnicodeString.html">UnicodeString</a> *const *strings, int32_t rowCount, int32_t columnCount)</td></tr>
<tr class="memdesc:aa22fb003f9cb7b8557f5e35419cb4d9a"><td class="mdescLeft"> </td><td class="mdescRight">Sets timezone strings. <a href="classicu_1_1DateFormatSymbols.html#aa22fb003f9cb7b8557f5e35419cb4d9a">More...</a><br /></td></tr>
<tr class="separator:aa22fb003f9cb7b8557f5e35419cb4d9a"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ae447a9f963b0833369d8493f0086c817"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classicu_1_1UnicodeString.html">UnicodeString</a> & </td><td class="memItemRight" valign="bottom"><a class="el" href="classicu_1_1DateFormatSymbols.html#ae447a9f963b0833369d8493f0086c817">getLocalPatternChars</a> (<a class="el" href="classicu_1_1UnicodeString.html">UnicodeString</a> &result) const</td></tr>
<tr class="memdesc:ae447a9f963b0833369d8493f0086c817"><td class="mdescLeft"> </td><td class="mdescRight">Gets localized date-time pattern characters. <a href="classicu_1_1DateFormatSymbols.html#ae447a9f963b0833369d8493f0086c817">More...</a><br /></td></tr>
<tr class="separator:ae447a9f963b0833369d8493f0086c817"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a2355447b2c48dae6bee391d17d2b1550"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classicu_1_1DateFormatSymbols.html#a2355447b2c48dae6bee391d17d2b1550">setLocalPatternChars</a> (const <a class="el" href="classicu_1_1UnicodeString.html">UnicodeString</a> &newLocalPatternChars)</td></tr>
<tr class="memdesc:a2355447b2c48dae6bee391d17d2b1550"><td class="mdescLeft"> </td><td class="mdescRight">Sets localized date-time pattern characters. <a href="classicu_1_1DateFormatSymbols.html#a2355447b2c48dae6bee391d17d2b1550">More...</a><br /></td></tr>
<tr class="separator:a2355447b2c48dae6bee391d17d2b1550"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a451cca86627fc7bca212ba8b0a0b659c"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classicu_1_1Locale.html">Locale</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classicu_1_1DateFormatSymbols.html#a451cca86627fc7bca212ba8b0a0b659c">getLocale</a> (<a class="el" href="uloc_8h.html#adf053345d343f8d82ae080f7a5871f34">ULocDataLocaleType</a> type, <a class="el" href="utypes_8h.html#a3343c1c8a8377277046774691c98d78c">UErrorCode</a> &status) const</td></tr>
<tr class="memdesc:a451cca86627fc7bca212ba8b0a0b659c"><td class="mdescLeft"> </td><td class="mdescRight">Returns the locale for this object. <a href="classicu_1_1DateFormatSymbols.html#a451cca86627fc7bca212ba8b0a0b659c">More...</a><br /></td></tr>
<tr class="separator:a451cca86627fc7bca212ba8b0a0b659c"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ab1ca7347c2efbc6e56b780c78b9beb1c"><td class="memItemLeft" align="right" valign="top">virtual <a class="el" href="uobject_8h.html#a22af10545208a455a6e884008df48e9f">UClassID</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classicu_1_1DateFormatSymbols.html#ab1ca7347c2efbc6e56b780c78b9beb1c">getDynamicClassID</a> () const override</td></tr>
<tr class="memdesc:ab1ca7347c2efbc6e56b780c78b9beb1c"><td class="mdescLeft"> </td><td class="mdescRight">ICU "poor man's RTTI", returns a UClassID for the actual class. <a href="classicu_1_1DateFormatSymbols.html#ab1ca7347c2efbc6e56b780c78b9beb1c">More...</a><br /></td></tr>
<tr class="separator:ab1ca7347c2efbc6e56b780c78b9beb1c"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header pub_methods_classicu_1_1UObject"><td colspan="2" onclick="javascript:toggleInherit('pub_methods_classicu_1_1UObject')"><img src="closed.png" alt="-"/> Public Member Functions inherited from <a class="el" href="classicu_1_1UObject.html">icu::UObject</a></td></tr>
<tr class="memitem:af10026497704f510d3d1f2eff50acb18 inherit pub_methods_classicu_1_1UObject"><td class="memItemLeft" align="right" valign="top">virtual </td><td class="memItemRight" valign="bottom"><a class="el" href="classicu_1_1UObject.html#af10026497704f510d3d1f2eff50acb18">~UObject</a> ()</td></tr>
<tr class="memdesc:af10026497704f510d3d1f2eff50acb18 inherit pub_methods_classicu_1_1UObject"><td class="mdescLeft"> </td><td class="mdescRight">Destructor. <a href="classicu_1_1UObject.html#af10026497704f510d3d1f2eff50acb18">More...</a><br /></td></tr>
<tr class="separator:af10026497704f510d3d1f2eff50acb18 inherit pub_methods_classicu_1_1UObject"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aca1169c4978c52ce2b76eda104e9a214 inherit pub_methods_classicu_1_1UObject"><td class="memItemLeft" align="right" valign="top">virtual <a class="el" href="uobject_8h.html#a22af10545208a455a6e884008df48e9f">UClassID</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classicu_1_1UObject.html#aca1169c4978c52ce2b76eda104e9a214">getDynamicClassID</a> () const</td></tr>
<tr class="memdesc:aca1169c4978c52ce2b76eda104e9a214 inherit pub_methods_classicu_1_1UObject"><td class="mdescLeft"> </td><td class="mdescRight">ICU4C "poor man's RTTI", returns a UClassID for the actual ICU class. <a href="classicu_1_1UObject.html#aca1169c4978c52ce2b76eda104e9a214">More...</a><br /></td></tr>
<tr class="separator:aca1169c4978c52ce2b76eda104e9a214 inherit pub_methods_classicu_1_1UObject"><td class="memSeparator" colspan="2"> </td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a id="pub-static-methods" name="pub-static-methods"></a>
Static Public Member Functions</h2></td></tr>
<tr class="memitem:a2f7e43feaf39ebd5026185fcd697876d"><td class="memItemLeft" align="right" valign="top">static const char16_t * </td><td class="memItemRight" valign="bottom"><a class="el" href="classicu_1_1DateFormatSymbols.html#a2f7e43feaf39ebd5026185fcd697876d">getPatternUChars</a> (void)</td></tr>
<tr class="memdesc:a2f7e43feaf39ebd5026185fcd697876d"><td class="mdescLeft"> </td><td class="mdescRight">Get the non-localized date-time pattern characters. <a href="classicu_1_1DateFormatSymbols.html#a2f7e43feaf39ebd5026185fcd697876d">More...</a><br /></td></tr>
<tr class="separator:a2f7e43feaf39ebd5026185fcd697876d"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:acc0c4d7fedc8bf1066d5879805fc86ad"><td class="memItemLeft" align="right" valign="top">static <a class="el" href="uobject_8h.html#a22af10545208a455a6e884008df48e9f">UClassID</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classicu_1_1DateFormatSymbols.html#acc0c4d7fedc8bf1066d5879805fc86ad">getStaticClassID</a> ()</td></tr>
<tr class="memdesc:acc0c4d7fedc8bf1066d5879805fc86ad"><td class="mdescLeft"> </td><td class="mdescRight">ICU "poor man's RTTI", returns a UClassID for this class. <a href="classicu_1_1DateFormatSymbols.html#acc0c4d7fedc8bf1066d5879805fc86ad">More...</a><br /></td></tr>
<tr class="separator:acc0c4d7fedc8bf1066d5879805fc86ad"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a5044a87b7914fddda01bd2ca2f039991"><td class="memItemLeft" align="right" valign="top">static <a class="el" href="classicu_1_1DateFormatSymbols.html">DateFormatSymbols</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classicu_1_1DateFormatSymbols.html#a5044a87b7914fddda01bd2ca2f039991">createForLocale</a> (const <a class="el" href="classicu_1_1Locale.html">Locale</a> &locale, <a class="el" href="utypes_8h.html#a3343c1c8a8377277046774691c98d78c">UErrorCode</a> &status)</td></tr>
<tr class="memdesc:a5044a87b7914fddda01bd2ca2f039991"><td class="mdescLeft"> </td><td class="mdescRight">Gets a <a class="el" href="classicu_1_1DateFormatSymbols.html" title="DateFormatSymbols is a public class for encapsulating localizable date-time formatting data – includi...">DateFormatSymbols</a> by locale. <a href="classicu_1_1DateFormatSymbols.html#a5044a87b7914fddda01bd2ca2f039991">More...</a><br /></td></tr>
<tr class="separator:a5044a87b7914fddda01bd2ca2f039991"><td class="memSeparator" colspan="2"> </td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a id="pub-static-attribs" name="pub-static-attribs"></a>
Static Public Attributes</h2></td></tr>
<tr class="memitem:ad4f70697826689aec71c8f4acca062a9"><td class="memItemLeft" align="right" valign="top">static const char16_t </td><td class="memItemRight" valign="bottom"><a class="el" href="classicu_1_1DateFormatSymbols.html#ad4f70697826689aec71c8f4acca062a9">DEFAULT_TIME_SEPARATOR</a> = 0x003a</td></tr>
<tr class="memdesc:ad4f70697826689aec71c8f4acca062a9"><td class="mdescLeft"> </td><td class="mdescRight">This default time separator is used for formatting when the locale doesn't specify any time separator, and always recognized when parsing. <a href="classicu_1_1DateFormatSymbols.html#ad4f70697826689aec71c8f4acca062a9">More...</a><br /></td></tr>
<tr class="separator:ad4f70697826689aec71c8f4acca062a9"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a4b12c1cb005bc23fd1193c06fb4d1915"><td class="memItemLeft" align="right" valign="top">static const char16_t </td><td class="memItemRight" valign="bottom"><a class="el" href="classicu_1_1DateFormatSymbols.html#a4b12c1cb005bc23fd1193c06fb4d1915">ALTERNATE_TIME_SEPARATOR</a> = 0x002e</td></tr>
<tr class="memdesc:a4b12c1cb005bc23fd1193c06fb4d1915"><td class="mdescLeft"> </td><td class="mdescRight">This alternate time separator is always recognized when parsing. <a href="classicu_1_1DateFormatSymbols.html#a4b12c1cb005bc23fd1193c06fb4d1915">More...</a><br /></td></tr>
<tr class="separator:a4b12c1cb005bc23fd1193c06fb4d1915"><td class="memSeparator" colspan="2"> </td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a id="friends" name="friends"></a>
Friends</h2></td></tr>
<tr class="memitem:ab540340747b423bc89f0e0777cd9683c"><td class="memItemLeft" align="right" valign="top">class </td><td class="memItemRight" valign="bottom"><a class="el" href="classicu_1_1DateFormatSymbols.html#ab540340747b423bc89f0e0777cd9683c">SimpleDateFormat</a></td></tr>
<tr class="separator:ab540340747b423bc89f0e0777cd9683c"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a88e52e249ed00a03943396105980ce2d"><td class="memItemLeft" align="right" valign="top">class </td><td class="memItemRight" valign="bottom"><a class="el" href="classicu_1_1DateFormatSymbols.html#a88e52e249ed00a03943396105980ce2d">DateFormatSymbolsSingleSetter</a></td></tr>
<tr class="separator:a88e52e249ed00a03943396105980ce2d"><td class="memSeparator" colspan="2"> </td></tr>
</table>
<a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2>
<div class="textblock"><p ><a class="el" href="classicu_1_1DateFormatSymbols.html" title="DateFormatSymbols is a public class for encapsulating localizable date-time formatting data – includi...">DateFormatSymbols</a> is a public class for encapsulating localizable date-time formatting data – including timezone data. </p>
<p ><a class="el" href="classicu_1_1DateFormatSymbols.html" title="DateFormatSymbols is a public class for encapsulating localizable date-time formatting data – includi...">DateFormatSymbols</a> is used by <a class="el" href="classicu_1_1DateFormat.html" title="DateFormat is an abstract class for a family of classes that convert dates and times from their inter...">DateFormat</a> and <a class="el" href="classicu_1_1SimpleDateFormat.html" title="SimpleDateFormat is a concrete class for formatting and parsing dates in a language-independent manne...">SimpleDateFormat</a>. </p>
<p >Rather than first creating a <a class="el" href="classicu_1_1DateFormatSymbols.html" title="DateFormatSymbols is a public class for encapsulating localizable date-time formatting data – includi...">DateFormatSymbols</a> to get a date-time formatter by using a <a class="el" href="classicu_1_1SimpleDateFormat.html" title="SimpleDateFormat is a concrete class for formatting and parsing dates in a language-independent manne...">SimpleDateFormat</a> constructor, clients are encouraged to create a date-time formatter using the getTimeInstance(), getDateInstance(), or getDateTimeInstance() method in <a class="el" href="classicu_1_1DateFormat.html" title="DateFormat is an abstract class for a family of classes that convert dates and times from their inter...">DateFormat</a>. Each of these methods can return a date/time formatter initialized with a default format pattern along with the date-time formatting data for a given or default locale. After a formatter is created, clients may modify the format pattern using the setPattern function as so desired. For more information on using these formatter factory functions, see <a class="el" href="classicu_1_1DateFormat.html" title="DateFormat is an abstract class for a family of classes that convert dates and times from their inter...">DateFormat</a>. </p>
<p >If clients decide to create a date-time formatter with a particular format pattern and locale, they can do so with new SimpleDateFormat(aPattern,
new DateFormatSymbols(aLocale)). This will load the appropriate date-time formatting data from the locale. </p>
<p ><a class="el" href="classicu_1_1DateFormatSymbols.html" title="DateFormatSymbols is a public class for encapsulating localizable date-time formatting data – includi...">DateFormatSymbols</a> objects are clonable. When clients obtain a <a class="el" href="classicu_1_1DateFormatSymbols.html" title="DateFormatSymbols is a public class for encapsulating localizable date-time formatting data – includi...">DateFormatSymbols</a> object, they can feel free to modify the date-time formatting data as necessary. For instance, clients can replace the localized date-time format pattern characters with the ones that they feel easy to remember. Or they can change the representative cities originally picked by default to using their favorite ones. </p>
<p ><a class="el" href="classicu_1_1DateFormatSymbols.html" title="DateFormatSymbols is a public class for encapsulating localizable date-time formatting data – includi...">DateFormatSymbols</a> are not expected to be subclassed. Data for a calendar is loaded out of resource bundles. The 'type' parameter indicates the type of calendar, for example, "gregorian" or "japanese". If the type is not gregorian (or nullptr, or an empty string) then the type is appended to the resource name, for example, 'Eras_japanese' instead of 'Eras'. If the resource 'Eras_japanese' did not exist (even in root), then this class will fall back to just 'Eras', that is, Gregorian data. Therefore, the calendar implementor MUST ensure that the root locale at least contains any resources that are to be particularized for the calendar type. </p>
<p class="definition">Definition at line <a class="el" href="dtfmtsym_8h_source.html#l00084">84</a> of file <a class="el" href="dtfmtsym_8h_source.html">dtfmtsym.h</a>.</p>
</div><h2 class="groupheader">Member Enumeration Documentation</h2>
<a id="ae129713471a20a5a418957de1ebd3470" name="ae129713471a20a5a418957de1ebd3470"></a>
<h2 class="memtitle"><span class="permalink"><a href="#ae129713471a20a5a418957de1ebd3470">◆ </a></span>DtContextType</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">enum <a class="el" href="classicu_1_1DateFormatSymbols.html#ae129713471a20a5a418957de1ebd3470">icu::DateFormatSymbols::DtContextType</a></td>
</tr>
</table>
</div><div class="memdoc">
<p>Selector for date formatting context. </p>
<dl class="stable"><dt><b><a class="el" href="stable.html#_stable003967">Stable:</a></b></dt><dd>ICU 3.6 </dd></dl>
<table class="fieldtable">
<tr><th colspan="2">Enumerator</th></tr><tr><td class="fieldname"><a id="ae129713471a20a5a418957de1ebd3470a90d80fd0f31f962b3a82b0f94f7271c5" name="ae129713471a20a5a418957de1ebd3470a90d80fd0f31f962b3a82b0f94f7271c5"></a>DT_CONTEXT_COUNT </td><td class="fielddoc"><p >One more than the highest normal DtContextType value. </p>
<dl class="deprecated"><dt><b><a class="el" href="deprecated.html#_deprecated000347">Deprecated:</a></b></dt><dd>ICU 58 The numeric value may change over time, see ICU ticket #12420. </dd></dl>
</td></tr>
</table>
<p class="definition">Definition at line <a class="el" href="dtfmtsym_8h_source.html#l00277">277</a> of file <a class="el" href="dtfmtsym_8h_source.html">dtfmtsym.h</a>.</p>
</div>
</div>
<a id="a62956ffdbeeed74b970ab846362473de" name="a62956ffdbeeed74b970ab846362473de"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a62956ffdbeeed74b970ab846362473de">◆ </a></span>DtWidthType</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">enum <a class="el" href="classicu_1_1DateFormatSymbols.html#a62956ffdbeeed74b970ab846362473de">icu::DateFormatSymbols::DtWidthType</a></td>
</tr>
</table>
</div><div class="memdoc">
<p>Selector for date formatting width. </p>
<dl class="stable"><dt><b><a class="el" href="stable.html#_stable003968">Stable:</a></b></dt><dd>ICU 3.6 </dd></dl>
<table class="fieldtable">
<tr><th colspan="2">Enumerator</th></tr><tr><td class="fieldname"><a id="a62956ffdbeeed74b970ab846362473dea8ba791cced89bc4fd4bd86efcb1c05b8" name="a62956ffdbeeed74b970ab846362473dea8ba791cced89bc4fd4bd86efcb1c05b8"></a>SHORT </td><td class="fielddoc"><p >Short width is currently only supported for weekday names. </p>
<dl class="stable"><dt><b><a class="el" href="stable.html#_stable003992">Stable:</a></b></dt><dd>ICU 51 </dd></dl>
</td></tr>
<tr><td class="fieldname"><a id="a62956ffdbeeed74b970ab846362473dea46ce5ece928f9afa5d97ec0b254eab2d" name="a62956ffdbeeed74b970ab846362473dea46ce5ece928f9afa5d97ec0b254eab2d"></a>DT_WIDTH_COUNT </td><td class="fielddoc"><p >One more than the highest normal DtWidthType value. </p>
<dl class="deprecated"><dt><b><a class="el" href="deprecated.html#_deprecated000348">Deprecated:</a></b></dt><dd>ICU 58 The numeric value may change over time, see ICU ticket #12420. </dd></dl>
</td></tr>
</table>
<p class="definition">Definition at line <a class="el" href="dtfmtsym_8h_source.html#l00293">293</a> of file <a class="el" href="dtfmtsym_8h_source.html">dtfmtsym.h</a>.</p>
</div>
</div>
<a id="ae79a31da5a90412bd5bf91b1c4d0392a" name="ae79a31da5a90412bd5bf91b1c4d0392a"></a>
<h2 class="memtitle"><span class="permalink"><a href="#ae79a31da5a90412bd5bf91b1c4d0392a">◆ </a></span>ECapitalizationContextUsageType</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">enum <a class="el" href="classicu_1_1DateFormatSymbols.html#ae79a31da5a90412bd5bf91b1c4d0392a">icu::DateFormatSymbols::ECapitalizationContextUsageType</a></td>
</tr>
</table>
</div><div class="memdoc">
<p>Constants for capitalization context usage types. </p>
<dl class="internal"><dt><b><a class="el" href="internal.html#_internal000293">Internal:</a></b></dt><dd>Do not use. This API is for internal use only. </dd></dl>
<p class="definition">Definition at line <a class="el" href="dtfmtsym_8h_source.html#l00605">605</a> of file <a class="el" href="dtfmtsym_8h_source.html">dtfmtsym.h</a>.</p>
</div>
</div>
<a id="af65d18b6442dbc4e36dd09c5515fcc52" name="af65d18b6442dbc4e36dd09c5515fcc52"></a>
<h2 class="memtitle"><span class="permalink"><a href="#af65d18b6442dbc4e36dd09c5515fcc52">◆ </a></span>EMonthPatternType</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">enum <a class="el" href="classicu_1_1DateFormatSymbols.html#af65d18b6442dbc4e36dd09c5515fcc52">icu::DateFormatSymbols::EMonthPatternType</a></td>
</tr>
</table>
</div><div class="memdoc">
<p>Somewhat temporary constants for leap month pattern types, adequate for supporting just leap month patterns as needed for Chinese lunar calendar. </p>
<p >Eventually we will add full support for different month pattern types (needed for other calendars such as Hindu) at which point this approach will be replaced by a more complete approach. </p><dl class="internal"><dt><b><a class="el" href="internal.html#_internal000291">Internal:</a></b></dt><dd>Do not use. This API is for internal use only. </dd></dl>
<p class="definition">Definition at line <a class="el" href="dtfmtsym_8h_source.html#l00513">513</a> of file <a class="el" href="dtfmtsym_8h_source.html">dtfmtsym.h</a>.</p>
</div>
</div>
<h2 class="groupheader">Constructor & Destructor Documentation</h2>
<a id="a5c4adf58d489814bf54ad6898b685eb3" name="a5c4adf58d489814bf54ad6898b685eb3"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a5c4adf58d489814bf54ad6898b685eb3">◆ </a></span>DateFormatSymbols() <span class="overload">[1/5]</span></h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">icu::DateFormatSymbols::DateFormatSymbols </td>
<td>(</td>
<td class="paramtype"><a class="el" href="utypes_8h.html#a3343c1c8a8377277046774691c98d78c">UErrorCode</a> & </td>
<td class="paramname"><em>status</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Construct a <a class="el" href="classicu_1_1DateFormatSymbols.html" title="DateFormatSymbols is a public class for encapsulating localizable date-time formatting data – includi...">DateFormatSymbols</a> object by loading format data from resources for the default locale, in the default calendar (Gregorian). </p>
<p >NOTE: This constructor will never fail; if it cannot get resource data for the default locale, it will return a last-resort object based on hard-coded strings.</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">status</td><td>Status code. Failure results if the resources for the default cannot be found or cannot be loaded </td></tr>
</table>
</dd>
</dl>
<dl class="stable"><dt><b><a class="el" href="stable.html#_stable003950">Stable:</a></b></dt><dd>ICU 2.0 </dd></dl>
</div>
</div>
<a id="af25969ba2758492adc5801883cf816df" name="af25969ba2758492adc5801883cf816df"></a>
<h2 class="memtitle"><span class="permalink"><a href="#af25969ba2758492adc5801883cf816df">◆ </a></span>DateFormatSymbols() <span class="overload">[2/5]</span></h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">icu::DateFormatSymbols::DateFormatSymbols </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classicu_1_1Locale.html">Locale</a> & </td>
<td class="paramname"><em>locale</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="el" href="utypes_8h.html#a3343c1c8a8377277046774691c98d78c">UErrorCode</a> & </td>
<td class="paramname"><em>status</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Construct a <a class="el" href="classicu_1_1DateFormatSymbols.html" title="DateFormatSymbols is a public class for encapsulating localizable date-time formatting data – includi...">DateFormatSymbols</a> object by loading format data from resources for the given locale, in the default calendar (Gregorian). </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">locale</td><td><a class="el" href="classicu_1_1Locale.html" title="A Locale object represents a specific geographical, political, or cultural region.">Locale</a> to load format data from. </td></tr>
<tr><td class="paramname">status</td><td>Status code. Failure results if the resources for the locale cannot be found or cannot be loaded </td></tr>
</table>
</dd>
</dl>
<dl class="stable"><dt><b><a class="el" href="stable.html#_stable003951">Stable:</a></b></dt><dd>ICU 2.0 </dd></dl>
</div>
</div>
<a id="a319701571d6c6294a472d2a9245fe5d9" name="a319701571d6c6294a472d2a9245fe5d9"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a319701571d6c6294a472d2a9245fe5d9">◆ </a></span>DateFormatSymbols() <span class="overload">[3/5]</span></h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">icu::DateFormatSymbols::DateFormatSymbols </td>
<td>(</td>
<td class="paramtype">const char * </td>
<td class="paramname"><em>type</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="el" href="utypes_8h.html#a3343c1c8a8377277046774691c98d78c">UErrorCode</a> & </td>
<td class="paramname"><em>status</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Construct a <a class="el" href="classicu_1_1DateFormatSymbols.html" title="DateFormatSymbols is a public class for encapsulating localizable date-time formatting data – includi...">DateFormatSymbols</a> object by loading format data from resources for the default locale, in the default calendar (Gregorian). </p>
<p >NOTE: This constructor will never fail; if it cannot get resource data for the default locale, it will return a last-resort object based on hard-coded strings.</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">type</td><td>Type of calendar (as returned by <a class="el" href="classicu_1_1Calendar.html#a78f40e9e43157796b9b7b32456c98daf" title="Returns the calendar type name string for this Calendar object.">Calendar::getType</a>). Will be used to access the correct set of strings. (nullptr or empty string defaults to "gregorian".) </td></tr>
<tr><td class="paramname">status</td><td>Status code. Failure results if the resources for the default cannot be found or cannot be loaded </td></tr>
</table>
</dd>
</dl>
<dl class="internal"><dt><b><a class="el" href="internal.html#_internal000285">Internal:</a></b></dt><dd>Do not use. This API is for internal use only. </dd></dl>
</div>
</div>
<a id="a9b015fbde5bb9b9d7f9a879ee2d8ef0d" name="a9b015fbde5bb9b9d7f9a879ee2d8ef0d"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a9b015fbde5bb9b9d7f9a879ee2d8ef0d">◆ </a></span>DateFormatSymbols() <span class="overload">[4/5]</span></h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">icu::DateFormatSymbols::DateFormatSymbols </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classicu_1_1Locale.html">Locale</a> & </td>
<td class="paramname"><em>locale</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const char * </td>
<td class="paramname"><em>type</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="el" href="utypes_8h.html#a3343c1c8a8377277046774691c98d78c">UErrorCode</a> & </td>
<td class="paramname"><em>status</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Construct a <a class="el" href="classicu_1_1DateFormatSymbols.html" title="DateFormatSymbols is a public class for encapsulating localizable date-time formatting data – includi...">DateFormatSymbols</a> object by loading format data from resources for the given locale, in the default calendar (Gregorian). </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">locale</td><td><a class="el" href="classicu_1_1Locale.html" title="A Locale object represents a specific geographical, political, or cultural region.">Locale</a> to load format data from. </td></tr>
<tr><td class="paramname">type</td><td>Type of calendar (as returned by <a class="el" href="classicu_1_1Calendar.html#a78f40e9e43157796b9b7b32456c98daf" title="Returns the calendar type name string for this Calendar object.">Calendar::getType</a>). Will be used to access the correct set of strings. (nullptr or empty string defaults to "gregorian".) </td></tr>
<tr><td class="paramname">status</td><td>Status code. Failure results if the resources for the locale cannot be found or cannot be loaded </td></tr>
</table>
</dd>
</dl>
<dl class="internal"><dt><b><a class="el" href="internal.html#_internal000286">Internal:</a></b></dt><dd>Do not use. This API is for internal use only. </dd></dl>
</div>
</div>
<a id="aafcf28ece0e7c3d9ffd7ed1ca575987b" name="aafcf28ece0e7c3d9ffd7ed1ca575987b"></a>
<h2 class="memtitle"><span class="permalink"><a href="#aafcf28ece0e7c3d9ffd7ed1ca575987b">◆ </a></span>DateFormatSymbols() <span class="overload">[5/5]</span></h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">icu::DateFormatSymbols::DateFormatSymbols </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classicu_1_1DateFormatSymbols.html">DateFormatSymbols</a> & </td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Copy constructor. </p>
<dl class="stable"><dt><b><a class="el" href="stable.html#_stable003952">Stable:</a></b></dt><dd>ICU 2.0 </dd></dl>
</div>
</div>
<a id="acb678c367aaf05b979f39b2d4c2067df" name="acb678c367aaf05b979f39b2d4c2067df"></a>
<h2 class="memtitle"><span class="permalink"><a href="#acb678c367aaf05b979f39b2d4c2067df">◆ </a></span>~DateFormatSymbols()</h2>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">virtual icu::DateFormatSymbols::~DateFormatSymbols </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Destructor. </p>
<p >This is nonvirtual because this class is not designed to be subclassed. </p><dl class="stable"><dt><b><a class="el" href="stable.html#_stable003954">Stable:</a></b></dt><dd>ICU 2.0 </dd></dl>
</div>
</div>
<h2 class="groupheader">Member Function Documentation</h2>
<a id="a5044a87b7914fddda01bd2ca2f039991" name="a5044a87b7914fddda01bd2ca2f039991"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a5044a87b7914fddda01bd2ca2f039991">◆ </a></span>createForLocale()</h2>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">static <a class="el" href="classicu_1_1DateFormatSymbols.html">DateFormatSymbols</a> * icu::DateFormatSymbols::createForLocale </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classicu_1_1Locale.html">Locale</a> & </td>
<td class="paramname"><em>locale</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="el" href="utypes_8h.html#a3343c1c8a8377277046774691c98d78c">UErrorCode</a> & </td>
<td class="paramname"><em>status</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Gets a <a class="el" href="classicu_1_1DateFormatSymbols.html" title="DateFormatSymbols is a public class for encapsulating localizable date-time formatting data – includi...">DateFormatSymbols</a> by locale. </p>
<p >Unlike the constructors which always use gregorian calendar, this method uses the calendar in the locale. If the locale contains no explicit calendar, this method uses the default calendar for that locale. </p><dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">locale</td><td>the locale. </td></tr>
<tr><td class="paramname">status</td><td>error returned here. </td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>the new <a class="el" href="classicu_1_1DateFormatSymbols.html" title="DateFormatSymbols is a public class for encapsulating localizable date-time formatting data – includi...">DateFormatSymbols</a> which the caller owns. </dd></dl>
<dl class="internal"><dt><b><a class="el" href="internal.html#_internal000294">Internal:</a></b></dt><dd>Do not use. This API is for internal use only. For ICU use only. </dd></dl>
</div>
</div>
<a id="a2222b8cff67d4fe70fc7c3ab8c8ad2ba" name="a2222b8cff67d4fe70fc7c3ab8c8ad2ba"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a2222b8cff67d4fe70fc7c3ab8c8ad2ba">◆ </a></span>getAmPmStrings()</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">const <a class="el" href="classicu_1_1UnicodeString.html">UnicodeString</a> * icu::DateFormatSymbols::getAmPmStrings </td>
<td>(</td>
<td class="paramtype">int32_t & </td>
<td class="paramname"><em>count</em></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Gets AM/PM strings. </p>
<p >For example: "AM" and "PM". </p><dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">count</td><td>Filled in with length of the array. </td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>the weekday strings. (<a class="el" href="classicu_1_1DateFormatSymbols.html" title="DateFormatSymbols is a public class for encapsulating localizable date-time formatting data – includi...">DateFormatSymbols</a> retains ownership.) </dd></dl>
<dl class="stable"><dt><b><a class="el" href="stable.html#_stable003979">Stable:</a></b></dt><dd>ICU 2.0 </dd></dl>
</div>
</div>
<a id="ab1ca7347c2efbc6e56b780c78b9beb1c" name="ab1ca7347c2efbc6e56b780c78b9beb1c"></a>
<h2 class="memtitle"><span class="permalink"><a href="#ab1ca7347c2efbc6e56b780c78b9beb1c">◆ </a></span>getDynamicClassID()</h2>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">virtual <a class="el" href="uobject_8h.html#a22af10545208a455a6e884008df48e9f">UClassID</a> icu::DateFormatSymbols::getDynamicClassID </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">override</span><span class="mlabel">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>ICU "poor man's RTTI", returns a UClassID for the actual class. </p>
<dl class="stable"><dt><b><a class="el" href="stable.html#_stable003990">Stable:</a></b></dt><dd>ICU 2.2 </dd></dl>
<p>Reimplemented from <a class="el" href="classicu_1_1UObject.html#aca1169c4978c52ce2b76eda104e9a214">icu::UObject</a>.</p>
</div>
</div>
<a id="a58f9323cb5441ce7ac11c523fab25ca5" name="a58f9323cb5441ce7ac11c523fab25ca5"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a58f9323cb5441ce7ac11c523fab25ca5">◆ </a></span>getEraNames()</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">const <a class="el" href="classicu_1_1UnicodeString.html">UnicodeString</a> * icu::DateFormatSymbols::getEraNames </td>
<td>(</td>
<td class="paramtype">int32_t & </td>
<td class="paramname"><em>count</em></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Gets era name strings. </p>
<p >For example: "Anno Domini" and "Before Christ".</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">count</td><td>Filled in with length of the array. </td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>the era name strings. </dd></dl>
<dl class="stable"><dt><b><a class="el" href="stable.html#_stable003959">Stable:</a></b></dt><dd>ICU 3.4 </dd></dl>
</div>
</div>
<a id="aeb40cb69dd4f9e839baadddfe328e09e" name="aeb40cb69dd4f9e839baadddfe328e09e"></a>
<h2 class="memtitle"><span class="permalink"><a href="#aeb40cb69dd4f9e839baadddfe328e09e">◆ </a></span>getEras()</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">const <a class="el" href="classicu_1_1UnicodeString.html">UnicodeString</a> * icu::DateFormatSymbols::getEras </td>
<td>(</td>
<td class="paramtype">int32_t & </td>
<td class="paramname"><em>count</em></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Gets abbreviated era strings. </p>
<p >For example: "AD" and "BC".</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">count</td><td>Filled in with length of the array. </td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>the era strings. </dd></dl>
<dl class="stable"><dt><b><a class="el" href="stable.html#_stable003957">Stable:</a></b></dt><dd>ICU 2.0 </dd></dl>
</div>
</div>
<a id="aae847ed158dbc952372555f62a5c200b" name="aae847ed158dbc952372555f62a5c200b"></a>
<h2 class="memtitle"><span class="permalink"><a href="#aae847ed158dbc952372555f62a5c200b">◆ </a></span>getLeapMonthPatterns()</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">const <a class="el" href="classicu_1_1UnicodeString.html">UnicodeString</a> * icu::DateFormatSymbols::getLeapMonthPatterns </td>
<td>(</td>
<td class="paramtype">int32_t & </td>
<td class="paramname"><em>count</em></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Somewhat temporary function for getting complete set of leap month patterns for all contexts & widths, indexed by EMonthPatternType values. </p>
<p >Returns nullptr if calendar does not have leap month patterns. Note, there is currently no setter for this. Eventually we will add full support for different month pattern types (needed for other calendars such as Hindu) at which point this approach will be replaced by a more complete approach. </p><dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">count</td><td>Filled in with length of the array (may be 0). </td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>The leap month patterns (<a class="el" href="classicu_1_1DateFormatSymbols.html" title="DateFormatSymbols is a public class for encapsulating localizable date-time formatting data – includi...">DateFormatSymbols</a> retains ownership). May be nullptr if there are no leap month patterns for this calendar. </dd></dl>
<dl class="internal"><dt><b><a class="el" href="internal.html#_internal000292">Internal:</a></b></dt><dd>Do not use. This API is for internal use only. </dd></dl>
</div>
</div>
<a id="a451cca86627fc7bca212ba8b0a0b659c" name="a451cca86627fc7bca212ba8b0a0b659c"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a451cca86627fc7bca212ba8b0a0b659c">◆ </a></span>getLocale()</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classicu_1_1Locale.html">Locale</a> icu::DateFormatSymbols::getLocale </td>
<td>(</td>
<td class="paramtype"><a class="el" href="uloc_8h.html#adf053345d343f8d82ae080f7a5871f34">ULocDataLocaleType</a> </td>
<td class="paramname"><em>type</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="el" href="utypes_8h.html#a3343c1c8a8377277046774691c98d78c">UErrorCode</a> & </td>
<td class="paramname"><em>status</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns the locale for this object. </p>
<p >Two flavors are available: valid and actual locale. </p><dl class="stable"><dt><b><a class="el" href="stable.html#_stable003989">Stable:</a></b></dt><dd>ICU 2.8 </dd></dl>
</div>
</div>
<a id="ae447a9f963b0833369d8493f0086c817" name="ae447a9f963b0833369d8493f0086c817"></a>
<h2 class="memtitle"><span class="permalink"><a href="#ae447a9f963b0833369d8493f0086c817">◆ </a></span>getLocalPatternChars()</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classicu_1_1UnicodeString.html">UnicodeString</a> & icu::DateFormatSymbols::getLocalPatternChars </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classicu_1_1UnicodeString.html">UnicodeString</a> & </td>
<td class="paramname"><em>result</em></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Gets localized date-time pattern characters. </p>
<p >For example: 'u', 't', etc. </p>
<p >Note: ICU no longer provides localized date-time pattern characters for a locale starting ICU 3.8. This method returns the non-localized date-time pattern characters unless user defined localized data is set by setLocalPatternChars. </p><dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">result</td><td>Output param which will receive the localized date-time pattern characters. </td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>A reference to 'result'. </dd></dl>
<dl class="stable"><dt><b><a class="el" href="stable.html#_stable003987">Stable:</a></b></dt><dd>ICU 2.0 </dd></dl>
</div>
</div>
<a id="a66ccd1c5146d81fc0ae8dde9618bf803" name="a66ccd1c5146d81fc0ae8dde9618bf803"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a66ccd1c5146d81fc0ae8dde9618bf803">◆ </a></span>getMonths() <span class="overload">[1/2]</span></h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">const <a class="el" href="classicu_1_1UnicodeString.html">UnicodeString</a> * icu::DateFormatSymbols::getMonths </td>
<td>(</td>
<td class="paramtype">int32_t & </td>
<td class="paramname"><em>count</em></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Gets month strings. </p>
<p >For example: "January", "February", etc. </p><dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">count</td><td>Filled in with length of the array. </td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>the month strings. (<a class="el" href="classicu_1_1DateFormatSymbols.html" title="DateFormatSymbols is a public class for encapsulating localizable date-time formatting data – includi...">DateFormatSymbols</a> retains ownership.) </dd></dl>
<dl class="stable"><dt><b><a class="el" href="stable.html#_stable003963">Stable:</a></b></dt><dd>ICU 2.0 </dd></dl>
</div>
</div>
<a id="a89da7cc1228609faa1577c823cdc45d1" name="a89da7cc1228609faa1577c823cdc45d1"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a89da7cc1228609faa1577c823cdc45d1">◆ </a></span>getMonths() <span class="overload">[2/2]</span></h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">const <a class="el" href="classicu_1_1UnicodeString.html">UnicodeString</a> * icu::DateFormatSymbols::getMonths </td>
<td>(</td>
<td class="paramtype">int32_t & </td>
<td class="paramname"><em>count</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="el" href="classicu_1_1DateFormatSymbols.html#ae129713471a20a5a418957de1ebd3470">DtContextType</a> </td>
<td class="paramname"><em>context</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="el" href="classicu_1_1DateFormatSymbols.html#a62956ffdbeeed74b970ab846362473de">DtWidthType</a> </td>
<td class="paramname"><em>width</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Gets month strings by width and context. </p>
<p >For example: "January", "February", etc. </p><dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">count</td><td>Filled in with length of the array. </td></tr>
<tr><td class="paramname">context</td><td>The formatting context, either FORMAT or STANDALONE </td></tr>
<tr><td class="paramname">width</td><td>The width of returned strings, either WIDE, ABBREVIATED, or NARROW. </td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>the month strings. (<a class="el" href="classicu_1_1DateFormatSymbols.html" title="DateFormatSymbols is a public class for encapsulating localizable date-time formatting data – includi...">DateFormatSymbols</a> retains ownership.) </dd></dl>
<dl class="stable"><dt><b><a class="el" href="stable.html#_stable003969">Stable:</a></b></dt><dd>ICU 3.4 </dd></dl>
</div>
</div>
<a id="a9438c758a39f5221cea57cdd6b7a00dc" name="a9438c758a39f5221cea57cdd6b7a00dc"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a9438c758a39f5221cea57cdd6b7a00dc">◆ </a></span>getNarrowEras()</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">const <a class="el" href="classicu_1_1UnicodeString.html">UnicodeString</a> * icu::DateFormatSymbols::getNarrowEras </td>
<td>(</td>
<td class="paramtype">int32_t & </td>
<td class="paramname"><em>count</em></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Gets narrow era strings. </p>
<p >For example: "A" and "B".</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">count</td><td>Filled in with length of the array. </td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>the narrow era strings. </dd></dl>
<dl class="stable"><dt><b><a class="el" href="stable.html#_stable003961">Stable:</a></b></dt><dd>ICU 4.2 </dd></dl>
</div>
</div>
<a id="a2f7e43feaf39ebd5026185fcd697876d" name="a2f7e43feaf39ebd5026185fcd697876d"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a2f7e43feaf39ebd5026185fcd697876d">◆ </a></span>getPatternUChars()</h2>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">static const char16_t * icu::DateFormatSymbols::getPatternUChars </td>
<td>(</td>
<td class="paramtype">void </td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Get the non-localized date-time pattern characters. </p>