-
Notifications
You must be signed in to change notification settings - Fork 45
Expand file tree
/
Copy pathclassBasicTimeZone.html
More file actions
1149 lines (1080 loc) · 113 KB
/
classBasicTimeZone.html
File metadata and controls
1149 lines (1080 loc) · 113 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
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=9"/>
<meta name="generator" content="Doxygen 1.9.1"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<title>ICU 78.1: icu::BasicTimeZone 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 style="height: 56px;">
<td id="projectalign" style="padding-left: 0.5em;">
<div id="projectname">ICU 78.1
 <span id="projectnumber">78.1</span>
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.9.1 -->
<script type="text/javascript">
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
var searchBox = new SearchBox("searchBox", "search",false,'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:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
$(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_1BasicTimeZone.html">BasicTimeZone</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="#pro-methods">Protected Member Functions</a> |
<a href="#pro-static-attribs">Static Protected Attributes</a> </div>
<div class="headertitle">
<div class="title">icu::BasicTimeZone Class Reference<span class="mlabels"><span class="mlabel">abstract</span></span></div> </div>
</div><!--header-->
<div class="contents">
<p><code><a class="el" href="classicu_1_1BasicTimeZone.html" title="BasicTimeZone is an abstract class extending TimeZone.">BasicTimeZone</a></code> is an abstract class extending <code><a class="el" href="classicu_1_1TimeZone.html" title="TimeZone represents a time zone offset, and also figures out daylight savings.">TimeZone</a></code>.
<a href="classicu_1_1BasicTimeZone.html#details">More...</a></p>
<p><code>#include <<a class="el" href="basictz_8h_source.html">basictz.h</a>></code></p>
<div class="dynheader">
Inheritance diagram for icu::BasicTimeZone:</div>
<div class="dyncontent">
<div class="center">
<img src="classicu_1_1BasicTimeZone.png" usemap="#icu::BasicTimeZone_map" alt=""/>
<map id="icu::BasicTimeZone_map" name="icu::BasicTimeZone_map">
<area href="classicu_1_1TimeZone.html" title="TimeZone represents a time zone offset, and also figures out daylight savings." alt="icu::TimeZone" shape="rect" coords="161,112,312,136"/>
<area href="classicu_1_1UObject.html" title="UObject is the common ICU "boilerplate" class." alt="icu::UObject" shape="rect" coords="161,56,312,80"/>
<area href="classicu_1_1UMemory.html" title="UMemory is the common ICU base class." alt="icu::UMemory" shape="rect" coords="161,0,312,24"/>
<area href="classicu_1_1RuleBasedTimeZone.html" title="a BasicTimeZone subclass implemented in terms of InitialTimeZoneRule and TimeZoneRule instances" alt="icu::RuleBasedTimeZone" shape="rect" coords="0,224,151,248"/>
<area href="classicu_1_1SimpleTimeZone.html" title="SimpleTimeZone is a concrete subclass of TimeZone that represents a time zone for use with a Gregoria..." alt="icu::SimpleTimeZone" shape="rect" coords="161,224,312,248"/>
<area href="classicu_1_1VTimeZone.html" title="VTimeZone is a class implementing RFC2445 VTIMEZONE." alt="icu::VTimeZone" shape="rect" coords="322,224,473,248"/>
</map>
</div></div>
<table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-types"></a>
Public Types</h2></td></tr>
<tr class="memitem:a17211c6d41ce2b74c4c705e4b7dc795d"><td class="memItemLeft" align="right" valign="top">enum  </td><td class="memItemRight" valign="bottom">{ <b>kStandard</b> = 0x01
, <b>kDaylight</b> = 0x03
, <b>kFormer</b> = 0x04
, <b>kLatter</b> = 0x0C
}</td></tr>
<tr class="memdesc:a17211c6d41ce2b74c4c705e4b7dc795d"><td class="mdescLeft"> </td><td class="mdescRight">The time type option bit flags used by getOffsetFromLocal. <a href="classicu_1_1BasicTimeZone.html#a17211c6d41ce2b74c4c705e4b7dc795d">More...</a><br /></td></tr>
<tr class="separator:a17211c6d41ce2b74c4c705e4b7dc795d"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header pub_types_classicu_1_1TimeZone"><td colspan="2" onclick="javascript:toggleInherit('pub_types_classicu_1_1TimeZone')"><img src="closed.png" alt="-"/> Public Types inherited from <a class="el" href="classicu_1_1TimeZone.html">icu::TimeZone</a></td></tr>
<tr class="memitem:a07cc5464421c1ae84f55ada930cf03df inherit pub_types_classicu_1_1TimeZone"><td class="memItemLeft" align="right" valign="top">enum  </td><td class="memItemRight" valign="bottom"><a class="el" href="classicu_1_1TimeZone.html#a07cc5464421c1ae84f55ada930cf03df">EDisplayType</a> { <br />
  <a class="el" href="classicu_1_1TimeZone.html#a07cc5464421c1ae84f55ada930cf03dfacf8bdac105168cf42e9350f7f5b2c73b">SHORT</a> = 1
, <a class="el" href="classicu_1_1TimeZone.html#a07cc5464421c1ae84f55ada930cf03dfa7cb5bca16851d6d844e8d6360cae706d">LONG</a>
, <a class="el" href="classicu_1_1TimeZone.html#a07cc5464421c1ae84f55ada930cf03dfa50f1bd07adb2c6bad3e01ad18b616ad8">SHORT_GENERIC</a>
, <a class="el" href="classicu_1_1TimeZone.html#a07cc5464421c1ae84f55ada930cf03dfac8036ecae72c354b247ef735b0096f2b">LONG_GENERIC</a>
, <br />
  <a class="el" href="classicu_1_1TimeZone.html#a07cc5464421c1ae84f55ada930cf03dfa822f7f90bbb88684c1704f3f1bd3b023">SHORT_GMT</a>
, <a class="el" href="classicu_1_1TimeZone.html#a07cc5464421c1ae84f55ada930cf03dfa420d51b41effa0a91b731fcf7cd79113">LONG_GMT</a>
, <a class="el" href="classicu_1_1TimeZone.html#a07cc5464421c1ae84f55ada930cf03dfa2e85e4887a95c53621a9bce58b163da7">SHORT_COMMONLY_USED</a>
, <a class="el" href="classicu_1_1TimeZone.html#a07cc5464421c1ae84f55ada930cf03dfabe884fb56c078112aee71c80496eb11d">GENERIC_LOCATION</a>
<br />
}</td></tr>
<tr class="memdesc:a07cc5464421c1ae84f55ada930cf03df"><td class="mdescLeft"> </td><td class="mdescRight">Enum for use with getDisplayName. <a href="classicu_1_1TimeZone.html#a07cc5464421c1ae84f55ada930cf03df">More...</a><br /></td></tr>
<tr class="separator:a07cc5464421c1ae84f55ada930cf03df inherit pub_types_classicu_1_1TimeZone"><td class="memSeparator" colspan="2"> </td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-methods"></a>
Public Member Functions</h2></td></tr>
<tr class="memitem:aa2d509be0eba95db2df22efd4b27b6d1"><td class="memItemLeft" align="right" valign="top">virtual </td><td class="memItemRight" valign="bottom"><a class="el" href="classicu_1_1BasicTimeZone.html#aa2d509be0eba95db2df22efd4b27b6d1">~BasicTimeZone</a> ()</td></tr>
<tr class="memdesc:aa2d509be0eba95db2df22efd4b27b6d1"><td class="mdescLeft"> </td><td class="mdescRight">Destructor. <a href="classicu_1_1BasicTimeZone.html#aa2d509be0eba95db2df22efd4b27b6d1">More...</a><br /></td></tr>
<tr class="separator:aa2d509be0eba95db2df22efd4b27b6d1"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aa75c3d1ee6770fbd5211c79260d4d0c4"><td class="memItemLeft" align="right" valign="top">virtual <a class="el" href="classicu_1_1BasicTimeZone.html">BasicTimeZone</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classicu_1_1BasicTimeZone.html#aa75c3d1ee6770fbd5211c79260d4d0c4">clone</a> () const override=0</td></tr>
<tr class="memdesc:aa75c3d1ee6770fbd5211c79260d4d0c4"><td class="mdescLeft"> </td><td class="mdescRight">Clones this object polymorphically. <a href="classicu_1_1BasicTimeZone.html#aa75c3d1ee6770fbd5211c79260d4d0c4">More...</a><br /></td></tr>
<tr class="separator:aa75c3d1ee6770fbd5211c79260d4d0c4"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ac398f0647dd9c3206d2eb6029fb5d7a9"><td class="memItemLeft" align="right" valign="top">virtual <a class="el" href="umachine_8h.html#a349ef00011f20ccd1d3b424445681aa5">UBool</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classicu_1_1BasicTimeZone.html#ac398f0647dd9c3206d2eb6029fb5d7a9">getNextTransition</a> (<a class="el" href="utypes_8h.html#ace1704e9e77d407d1eaaa2e73ec0c039">UDate</a> base, <a class="el" href="umachine_8h.html#a349ef00011f20ccd1d3b424445681aa5">UBool</a> inclusive, <a class="el" href="classicu_1_1TimeZoneTransition.html">TimeZoneTransition</a> &result) const =0</td></tr>
<tr class="memdesc:ac398f0647dd9c3206d2eb6029fb5d7a9"><td class="mdescLeft"> </td><td class="mdescRight">Gets the first time zone transition after the base time. <a href="classicu_1_1BasicTimeZone.html#ac398f0647dd9c3206d2eb6029fb5d7a9">More...</a><br /></td></tr>
<tr class="separator:ac398f0647dd9c3206d2eb6029fb5d7a9"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ae8b73123130deae483830b36f2da2c87"><td class="memItemLeft" align="right" valign="top">virtual <a class="el" href="umachine_8h.html#a349ef00011f20ccd1d3b424445681aa5">UBool</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classicu_1_1BasicTimeZone.html#ae8b73123130deae483830b36f2da2c87">getPreviousTransition</a> (<a class="el" href="utypes_8h.html#ace1704e9e77d407d1eaaa2e73ec0c039">UDate</a> base, <a class="el" href="umachine_8h.html#a349ef00011f20ccd1d3b424445681aa5">UBool</a> inclusive, <a class="el" href="classicu_1_1TimeZoneTransition.html">TimeZoneTransition</a> &result) const =0</td></tr>
<tr class="memdesc:ae8b73123130deae483830b36f2da2c87"><td class="mdescLeft"> </td><td class="mdescRight">Gets the most recent time zone transition before the base time. <a href="classicu_1_1BasicTimeZone.html#ae8b73123130deae483830b36f2da2c87">More...</a><br /></td></tr>
<tr class="separator:ae8b73123130deae483830b36f2da2c87"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:af09ac7633f0dce8ef95e6126f88e475f"><td class="memItemLeft" align="right" valign="top">virtual <a class="el" href="umachine_8h.html#a349ef00011f20ccd1d3b424445681aa5">UBool</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classicu_1_1BasicTimeZone.html#af09ac7633f0dce8ef95e6126f88e475f">hasEquivalentTransitions</a> (const <a class="el" href="classicu_1_1BasicTimeZone.html">BasicTimeZone</a> &tz, <a class="el" href="utypes_8h.html#ace1704e9e77d407d1eaaa2e73ec0c039">UDate</a> start, <a class="el" href="utypes_8h.html#ace1704e9e77d407d1eaaa2e73ec0c039">UDate</a> end, <a class="el" href="umachine_8h.html#a349ef00011f20ccd1d3b424445681aa5">UBool</a> ignoreDstAmount, <a class="el" href="utypes_8h.html#a3343c1c8a8377277046774691c98d78c">UErrorCode</a> &ec) const</td></tr>
<tr class="memdesc:af09ac7633f0dce8ef95e6126f88e475f"><td class="mdescLeft"> </td><td class="mdescRight">Checks if the time zone has equivalent transitions in the time range. <a href="classicu_1_1BasicTimeZone.html#af09ac7633f0dce8ef95e6126f88e475f">More...</a><br /></td></tr>
<tr class="separator:af09ac7633f0dce8ef95e6126f88e475f"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:af96a42842f1963c58a9b953010a7f295"><td class="memItemLeft" align="right" valign="top">virtual int32_t </td><td class="memItemRight" valign="bottom"><a class="el" href="classicu_1_1BasicTimeZone.html#af96a42842f1963c58a9b953010a7f295">countTransitionRules</a> (<a class="el" href="utypes_8h.html#a3343c1c8a8377277046774691c98d78c">UErrorCode</a> &status) const =0</td></tr>
<tr class="memdesc:af96a42842f1963c58a9b953010a7f295"><td class="mdescLeft"> </td><td class="mdescRight">Returns the number of <code><a class="el" href="classicu_1_1TimeZoneRule.html" title="TimeZoneRule is a class representing a rule for time zone.">TimeZoneRule</a></code>s which represents time transitions, for this time zone, that is, all <code><a class="el" href="classicu_1_1TimeZoneRule.html" title="TimeZoneRule is a class representing a rule for time zone.">TimeZoneRule</a></code>s for this time zone except <code><a class="el" href="classicu_1_1InitialTimeZoneRule.html" title="InitialTimeZoneRule represents a time zone rule representing a time zone effective from the beginning...">InitialTimeZoneRule</a></code>. <a href="classicu_1_1BasicTimeZone.html#af96a42842f1963c58a9b953010a7f295">More...</a><br /></td></tr>
<tr class="separator:af96a42842f1963c58a9b953010a7f295"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aa3b25fc7ca494eca418d1a629f896a5b"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classicu_1_1BasicTimeZone.html#aa3b25fc7ca494eca418d1a629f896a5b">getTimeZoneRules</a> (const <a class="el" href="classicu_1_1InitialTimeZoneRule.html">InitialTimeZoneRule</a> *&initial, const <a class="el" href="classicu_1_1TimeZoneRule.html">TimeZoneRule</a> *trsrules[], int32_t &trscount, <a class="el" href="utypes_8h.html#a3343c1c8a8377277046774691c98d78c">UErrorCode</a> &status) const =0</td></tr>
<tr class="memdesc:aa3b25fc7ca494eca418d1a629f896a5b"><td class="mdescLeft"> </td><td class="mdescRight">Gets the <code><a class="el" href="classicu_1_1InitialTimeZoneRule.html" title="InitialTimeZoneRule represents a time zone rule representing a time zone effective from the beginning...">InitialTimeZoneRule</a></code> and the set of <code><a class="el" href="classicu_1_1TimeZoneRule.html" title="TimeZoneRule is a class representing a rule for time zone.">TimeZoneRule</a></code> which represent time transitions for this time zone. <a href="classicu_1_1BasicTimeZone.html#aa3b25fc7ca494eca418d1a629f896a5b">More...</a><br /></td></tr>
<tr class="separator:aa3b25fc7ca494eca418d1a629f896a5b"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad843d9e77d3d6d6d825c559d548dcbed"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classicu_1_1BasicTimeZone.html#ad843d9e77d3d6d6d825c559d548dcbed">getSimpleRulesNear</a> (<a class="el" href="utypes_8h.html#ace1704e9e77d407d1eaaa2e73ec0c039">UDate</a> date, <a class="el" href="classicu_1_1InitialTimeZoneRule.html">InitialTimeZoneRule</a> *&initial, <a class="el" href="classicu_1_1AnnualTimeZoneRule.html">AnnualTimeZoneRule</a> *&std, <a class="el" href="classicu_1_1AnnualTimeZoneRule.html">AnnualTimeZoneRule</a> *&dst, <a class="el" href="utypes_8h.html#a3343c1c8a8377277046774691c98d78c">UErrorCode</a> &status) const</td></tr>
<tr class="memdesc:ad843d9e77d3d6d6d825c559d548dcbed"><td class="mdescLeft"> </td><td class="mdescRight">Gets the set of time zone rules valid at the specified time. <a href="classicu_1_1BasicTimeZone.html#ad843d9e77d3d6d6d825c559d548dcbed">More...</a><br /></td></tr>
<tr class="separator:ad843d9e77d3d6d6d825c559d548dcbed"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a49fe120d78a17b93657fd3e97168ca30"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classicu_1_1BasicTimeZone.html#a49fe120d78a17b93657fd3e97168ca30">getOffsetFromLocal</a> (<a class="el" href="utypes_8h.html#ace1704e9e77d407d1eaaa2e73ec0c039">UDate</a> date, <a class="el" href="ucal_8h.html#a15c4c761da085c0a7fcb7a02a68d6e58">UTimeZoneLocalOption</a> nonExistingTimeOpt, <a class="el" href="ucal_8h.html#a15c4c761da085c0a7fcb7a02a68d6e58">UTimeZoneLocalOption</a> duplicatedTimeOpt, int32_t &rawOffset, int32_t &dstOffset, <a class="el" href="utypes_8h.html#a3343c1c8a8377277046774691c98d78c">UErrorCode</a> &status) const</td></tr>
<tr class="memdesc:a49fe120d78a17b93657fd3e97168ca30"><td class="mdescLeft"> </td><td class="mdescRight">Get time zone offsets from local wall time. <a href="classicu_1_1BasicTimeZone.html#a49fe120d78a17b93657fd3e97168ca30">More...</a><br /></td></tr>
<tr class="separator:a49fe120d78a17b93657fd3e97168ca30"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a65086b161e48bb92f382734e3610d854"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classicu_1_1BasicTimeZone.html#a65086b161e48bb92f382734e3610d854">getOffsetFromLocal</a> (<a class="el" href="utypes_8h.html#ace1704e9e77d407d1eaaa2e73ec0c039">UDate</a> date, int32_t nonExistingTimeOpt, int32_t duplicatedTimeOpt, int32_t &rawOffset, int32_t &dstOffset, <a class="el" href="utypes_8h.html#a3343c1c8a8377277046774691c98d78c">UErrorCode</a> &status) const</td></tr>
<tr class="memdesc:a65086b161e48bb92f382734e3610d854"><td class="mdescLeft"> </td><td class="mdescRight">Get time zone offsets from local wall time. <a href="classicu_1_1BasicTimeZone.html#a65086b161e48bb92f382734e3610d854">More...</a><br /></td></tr>
<tr class="separator:a65086b161e48bb92f382734e3610d854"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header pub_methods_classicu_1_1TimeZone"><td colspan="2" onclick="javascript:toggleInherit('pub_methods_classicu_1_1TimeZone')"><img src="closed.png" alt="-"/> Public Member Functions inherited from <a class="el" href="classicu_1_1TimeZone.html">icu::TimeZone</a></td></tr>
<tr class="memitem:ae5a525aeedacb363322421aa6d4e6399 inherit pub_methods_classicu_1_1TimeZone"><td class="memItemLeft" align="right" valign="top">virtual </td><td class="memItemRight" valign="bottom"><a class="el" href="classicu_1_1TimeZone.html#ae5a525aeedacb363322421aa6d4e6399">~TimeZone</a> ()</td></tr>
<tr class="separator:ae5a525aeedacb363322421aa6d4e6399 inherit pub_methods_classicu_1_1TimeZone"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a1f251fdaa58c414b747cd3517cadc3b6 inherit pub_methods_classicu_1_1TimeZone"><td class="memItemLeft" align="right" valign="top">virtual bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classicu_1_1TimeZone.html#a1f251fdaa58c414b747cd3517cadc3b6">operator==</a> (const <a class="el" href="classicu_1_1TimeZone.html">TimeZone</a> &that) const</td></tr>
<tr class="memdesc:a1f251fdaa58c414b747cd3517cadc3b6 inherit pub_methods_classicu_1_1TimeZone"><td class="mdescLeft"> </td><td class="mdescRight">Returns true if the two TimeZones are equal. <a href="classicu_1_1TimeZone.html#a1f251fdaa58c414b747cd3517cadc3b6">More...</a><br /></td></tr>
<tr class="separator:a1f251fdaa58c414b747cd3517cadc3b6 inherit pub_methods_classicu_1_1TimeZone"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ab212966497a6c8ec16292d0b0355348d inherit pub_methods_classicu_1_1TimeZone"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classicu_1_1TimeZone.html#ab212966497a6c8ec16292d0b0355348d">operator!=</a> (const <a class="el" href="classicu_1_1TimeZone.html">TimeZone</a> &that) const</td></tr>
<tr class="memdesc:ab212966497a6c8ec16292d0b0355348d inherit pub_methods_classicu_1_1TimeZone"><td class="mdescLeft"> </td><td class="mdescRight">Returns true if the two TimeZones are NOT equal; that is, if <a class="el" href="classicu_1_1TimeZone.html#a1f251fdaa58c414b747cd3517cadc3b6" title="Returns true if the two TimeZones are equal.">operator==()</a> returns false. <a href="classicu_1_1TimeZone.html#ab212966497a6c8ec16292d0b0355348d">More...</a><br /></td></tr>
<tr class="separator:ab212966497a6c8ec16292d0b0355348d inherit pub_methods_classicu_1_1TimeZone"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a46ea292ce977f08f7a1b4868994b5914 inherit pub_methods_classicu_1_1TimeZone"><td class="memItemLeft" align="right" valign="top">virtual int32_t </td><td class="memItemRight" valign="bottom"><a class="el" href="classicu_1_1TimeZone.html#a46ea292ce977f08f7a1b4868994b5914">getOffset</a> (uint8_t era, int32_t year, int32_t month, int32_t day, uint8_t dayOfWeek, int32_t millis, <a class="el" href="utypes_8h.html#a3343c1c8a8377277046774691c98d78c">UErrorCode</a> &status) const =0</td></tr>
<tr class="memdesc:a46ea292ce977f08f7a1b4868994b5914 inherit pub_methods_classicu_1_1TimeZone"><td class="mdescLeft"> </td><td class="mdescRight">Returns the <a class="el" href="classicu_1_1TimeZone.html" title="TimeZone represents a time zone offset, and also figures out daylight savings.">TimeZone</a>'s adjusted GMT offset (i.e., the number of milliseconds to add to GMT to get local time in this time zone, taking daylight savings time into account) as of a particular reference date. <a href="classicu_1_1TimeZone.html#a46ea292ce977f08f7a1b4868994b5914">More...</a><br /></td></tr>
<tr class="separator:a46ea292ce977f08f7a1b4868994b5914 inherit pub_methods_classicu_1_1TimeZone"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ab374d74c511e2941c63f6f4d54c3eda7 inherit pub_methods_classicu_1_1TimeZone"><td class="memItemLeft" align="right" valign="top">virtual int32_t </td><td class="memItemRight" valign="bottom"><a class="el" href="classicu_1_1TimeZone.html#ab374d74c511e2941c63f6f4d54c3eda7">getOffset</a> (uint8_t era, int32_t year, int32_t month, int32_t day, uint8_t dayOfWeek, int32_t milliseconds, int32_t monthLength, <a class="el" href="utypes_8h.html#a3343c1c8a8377277046774691c98d78c">UErrorCode</a> &status) const =0</td></tr>
<tr class="memdesc:ab374d74c511e2941c63f6f4d54c3eda7 inherit pub_methods_classicu_1_1TimeZone"><td class="mdescLeft"> </td><td class="mdescRight">Gets the time zone offset, for current date, modified in case of daylight savings. <a href="classicu_1_1TimeZone.html#ab374d74c511e2941c63f6f4d54c3eda7">More...</a><br /></td></tr>
<tr class="separator:ab374d74c511e2941c63f6f4d54c3eda7 inherit pub_methods_classicu_1_1TimeZone"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:afcbc1c48bf0b453b0123c4cb75d20e96 inherit pub_methods_classicu_1_1TimeZone"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classicu_1_1TimeZone.html#afcbc1c48bf0b453b0123c4cb75d20e96">getOffset</a> (<a class="el" href="utypes_8h.html#ace1704e9e77d407d1eaaa2e73ec0c039">UDate</a> date, <a class="el" href="umachine_8h.html#a349ef00011f20ccd1d3b424445681aa5">UBool</a> local, int32_t &rawOffset, int32_t &dstOffset, <a class="el" href="utypes_8h.html#a3343c1c8a8377277046774691c98d78c">UErrorCode</a> &ec) const</td></tr>
<tr class="memdesc:afcbc1c48bf0b453b0123c4cb75d20e96 inherit pub_methods_classicu_1_1TimeZone"><td class="mdescLeft"> </td><td class="mdescRight">Returns the time zone raw and GMT offset for the given moment in time. <a href="classicu_1_1TimeZone.html#afcbc1c48bf0b453b0123c4cb75d20e96">More...</a><br /></td></tr>
<tr class="separator:afcbc1c48bf0b453b0123c4cb75d20e96 inherit pub_methods_classicu_1_1TimeZone"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a19c3aad4a860a75067855605aaeb8e1e inherit pub_methods_classicu_1_1TimeZone"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classicu_1_1TimeZone.html#a19c3aad4a860a75067855605aaeb8e1e">setRawOffset</a> (int32_t offsetMillis)=0</td></tr>
<tr class="memdesc:a19c3aad4a860a75067855605aaeb8e1e inherit pub_methods_classicu_1_1TimeZone"><td class="mdescLeft"> </td><td class="mdescRight">Sets the <a class="el" href="classicu_1_1TimeZone.html" title="TimeZone represents a time zone offset, and also figures out daylight savings.">TimeZone</a>'s raw GMT offset (i.e., the number of milliseconds to add to GMT to get local time, before taking daylight savings time into account). <a href="classicu_1_1TimeZone.html#a19c3aad4a860a75067855605aaeb8e1e">More...</a><br /></td></tr>
<tr class="separator:a19c3aad4a860a75067855605aaeb8e1e inherit pub_methods_classicu_1_1TimeZone"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ac8efc0bc543793288b2f6b95d89681fc inherit pub_methods_classicu_1_1TimeZone"><td class="memItemLeft" align="right" valign="top">virtual int32_t </td><td class="memItemRight" valign="bottom"><a class="el" href="classicu_1_1TimeZone.html#ac8efc0bc543793288b2f6b95d89681fc">getRawOffset</a> () const =0</td></tr>
<tr class="memdesc:ac8efc0bc543793288b2f6b95d89681fc inherit pub_methods_classicu_1_1TimeZone"><td class="mdescLeft"> </td><td class="mdescRight">Returns the <a class="el" href="classicu_1_1TimeZone.html" title="TimeZone represents a time zone offset, and also figures out daylight savings.">TimeZone</a>'s raw GMT offset (i.e., the number of milliseconds to add to GMT to get local time, before taking daylight savings time into account). <a href="classicu_1_1TimeZone.html#ac8efc0bc543793288b2f6b95d89681fc">More...</a><br /></td></tr>
<tr class="separator:ac8efc0bc543793288b2f6b95d89681fc inherit pub_methods_classicu_1_1TimeZone"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a4a039c2557698f1eff9ef139dcf755c4 inherit pub_methods_classicu_1_1TimeZone"><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_1TimeZone.html#a4a039c2557698f1eff9ef139dcf755c4">getID</a> (<a class="el" href="classicu_1_1UnicodeString.html">UnicodeString</a> &ID) const</td></tr>
<tr class="memdesc:a4a039c2557698f1eff9ef139dcf755c4 inherit pub_methods_classicu_1_1TimeZone"><td class="mdescLeft"> </td><td class="mdescRight">Fills in "ID" with the <a class="el" href="classicu_1_1TimeZone.html" title="TimeZone represents a time zone offset, and also figures out daylight savings.">TimeZone</a>'s ID. <a href="classicu_1_1TimeZone.html#a4a039c2557698f1eff9ef139dcf755c4">More...</a><br /></td></tr>
<tr class="separator:a4a039c2557698f1eff9ef139dcf755c4 inherit pub_methods_classicu_1_1TimeZone"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a1b6daa38728e1015f22d121b45f74dda inherit pub_methods_classicu_1_1TimeZone"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classicu_1_1TimeZone.html#a1b6daa38728e1015f22d121b45f74dda">setID</a> (const <a class="el" href="classicu_1_1UnicodeString.html">UnicodeString</a> &ID)</td></tr>
<tr class="memdesc:a1b6daa38728e1015f22d121b45f74dda inherit pub_methods_classicu_1_1TimeZone"><td class="mdescLeft"> </td><td class="mdescRight">Sets the <a class="el" href="classicu_1_1TimeZone.html" title="TimeZone represents a time zone offset, and also figures out daylight savings.">TimeZone</a>'s ID to the specified value. <a href="classicu_1_1TimeZone.html#a1b6daa38728e1015f22d121b45f74dda">More...</a><br /></td></tr>
<tr class="separator:a1b6daa38728e1015f22d121b45f74dda inherit pub_methods_classicu_1_1TimeZone"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a8173bbd9b97a0e292fb9c3aeca6e023a inherit pub_methods_classicu_1_1TimeZone"><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_1TimeZone.html#a8173bbd9b97a0e292fb9c3aeca6e023a">getDisplayName</a> (<a class="el" href="classicu_1_1UnicodeString.html">UnicodeString</a> &result) const</td></tr>
<tr class="memdesc:a8173bbd9b97a0e292fb9c3aeca6e023a inherit pub_methods_classicu_1_1TimeZone"><td class="mdescLeft"> </td><td class="mdescRight">Returns a name of this time zone suitable for presentation to the user in the default locale. <a href="classicu_1_1TimeZone.html#a8173bbd9b97a0e292fb9c3aeca6e023a">More...</a><br /></td></tr>
<tr class="separator:a8173bbd9b97a0e292fb9c3aeca6e023a inherit pub_methods_classicu_1_1TimeZone"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a42ab1621fb7b4e87deab327070e5572f inherit pub_methods_classicu_1_1TimeZone"><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_1TimeZone.html#a42ab1621fb7b4e87deab327070e5572f">getDisplayName</a> (const <a class="el" href="classicu_1_1Locale.html">Locale</a> &locale, <a class="el" href="classicu_1_1UnicodeString.html">UnicodeString</a> &result) const</td></tr>
<tr class="memdesc:a42ab1621fb7b4e87deab327070e5572f inherit pub_methods_classicu_1_1TimeZone"><td class="mdescLeft"> </td><td class="mdescRight">Returns a name of this time zone suitable for presentation to the user in the specified locale. <a href="classicu_1_1TimeZone.html#a42ab1621fb7b4e87deab327070e5572f">More...</a><br /></td></tr>
<tr class="separator:a42ab1621fb7b4e87deab327070e5572f inherit pub_methods_classicu_1_1TimeZone"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a325746511848bc4b30e50bb6b7ac6b1d inherit pub_methods_classicu_1_1TimeZone"><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_1TimeZone.html#a325746511848bc4b30e50bb6b7ac6b1d">getDisplayName</a> (<a class="el" href="umachine_8h.html#a349ef00011f20ccd1d3b424445681aa5">UBool</a> inDaylight, <a class="el" href="classicu_1_1TimeZone.html#a07cc5464421c1ae84f55ada930cf03df">EDisplayType</a> style, <a class="el" href="classicu_1_1UnicodeString.html">UnicodeString</a> &result) const</td></tr>
<tr class="memdesc:a325746511848bc4b30e50bb6b7ac6b1d inherit pub_methods_classicu_1_1TimeZone"><td class="mdescLeft"> </td><td class="mdescRight">Returns a name of this time zone suitable for presentation to the user in the default locale. <a href="classicu_1_1TimeZone.html#a325746511848bc4b30e50bb6b7ac6b1d">More...</a><br /></td></tr>
<tr class="separator:a325746511848bc4b30e50bb6b7ac6b1d inherit pub_methods_classicu_1_1TimeZone"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a90ee4cba05d60ca91b2e59b2469f2f52 inherit pub_methods_classicu_1_1TimeZone"><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_1TimeZone.html#a90ee4cba05d60ca91b2e59b2469f2f52">getDisplayName</a> (<a class="el" href="umachine_8h.html#a349ef00011f20ccd1d3b424445681aa5">UBool</a> inDaylight, <a class="el" href="classicu_1_1TimeZone.html#a07cc5464421c1ae84f55ada930cf03df">EDisplayType</a> style, const <a class="el" href="classicu_1_1Locale.html">Locale</a> &locale, <a class="el" href="classicu_1_1UnicodeString.html">UnicodeString</a> &result) const</td></tr>
<tr class="memdesc:a90ee4cba05d60ca91b2e59b2469f2f52 inherit pub_methods_classicu_1_1TimeZone"><td class="mdescLeft"> </td><td class="mdescRight">Returns a name of this time zone suitable for presentation to the user in the specified locale. <a href="classicu_1_1TimeZone.html#a90ee4cba05d60ca91b2e59b2469f2f52">More...</a><br /></td></tr>
<tr class="separator:a90ee4cba05d60ca91b2e59b2469f2f52 inherit pub_methods_classicu_1_1TimeZone"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a3cfc204672fa8b7fe5b5e58f36fc51ed inherit pub_methods_classicu_1_1TimeZone"><td class="memItemLeft" align="right" valign="top">virtual <a class="el" href="umachine_8h.html#a349ef00011f20ccd1d3b424445681aa5">UBool</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classicu_1_1TimeZone.html#a3cfc204672fa8b7fe5b5e58f36fc51ed">useDaylightTime</a> () const =0</td></tr>
<tr class="memdesc:a3cfc204672fa8b7fe5b5e58f36fc51ed inherit pub_methods_classicu_1_1TimeZone"><td class="mdescLeft"> </td><td class="mdescRight">Queries if this time zone uses daylight savings time. <a href="classicu_1_1TimeZone.html#a3cfc204672fa8b7fe5b5e58f36fc51ed">More...</a><br /></td></tr>
<tr class="separator:a3cfc204672fa8b7fe5b5e58f36fc51ed inherit pub_methods_classicu_1_1TimeZone"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad9698381477a6f59ead590bb8917c1a4 inherit pub_methods_classicu_1_1TimeZone"><td class="memItemLeft" align="right" valign="top">virtual <a class="el" href="umachine_8h.html#a349ef00011f20ccd1d3b424445681aa5">UBool</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classicu_1_1TimeZone.html#ad9698381477a6f59ead590bb8917c1a4">inDaylightTime</a> (<a class="el" href="utypes_8h.html#ace1704e9e77d407d1eaaa2e73ec0c039">UDate</a> date, <a class="el" href="utypes_8h.html#a3343c1c8a8377277046774691c98d78c">UErrorCode</a> &status) const =0</td></tr>
<tr class="memdesc:ad9698381477a6f59ead590bb8917c1a4 inherit pub_methods_classicu_1_1TimeZone"><td class="mdescLeft"> </td><td class="mdescRight">Queries if the given date is in daylight savings time in this time zone. <a href="classicu_1_1TimeZone.html#ad9698381477a6f59ead590bb8917c1a4">More...</a><br /></td></tr>
<tr class="separator:ad9698381477a6f59ead590bb8917c1a4 inherit pub_methods_classicu_1_1TimeZone"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a9008ce68365e802922178f6726cda72c inherit pub_methods_classicu_1_1TimeZone"><td class="memItemLeft" align="right" valign="top">virtual <a class="el" href="umachine_8h.html#a349ef00011f20ccd1d3b424445681aa5">UBool</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classicu_1_1TimeZone.html#a9008ce68365e802922178f6726cda72c">hasSameRules</a> (const <a class="el" href="classicu_1_1TimeZone.html">TimeZone</a> &other) const</td></tr>
<tr class="memdesc:a9008ce68365e802922178f6726cda72c inherit pub_methods_classicu_1_1TimeZone"><td class="mdescLeft"> </td><td class="mdescRight">Returns true if this zone has the same rule and offset as another zone. <a href="classicu_1_1TimeZone.html#a9008ce68365e802922178f6726cda72c">More...</a><br /></td></tr>
<tr class="separator:a9008ce68365e802922178f6726cda72c inherit pub_methods_classicu_1_1TimeZone"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a0940e0b4e2c513d11d4b240f0d41d42c inherit pub_methods_classicu_1_1TimeZone"><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_1TimeZone.html#a0940e0b4e2c513d11d4b240f0d41d42c">getDynamicClassID</a> () const override=0</td></tr>
<tr class="memdesc:a0940e0b4e2c513d11d4b240f0d41d42c inherit pub_methods_classicu_1_1TimeZone"><td class="mdescLeft"> </td><td class="mdescRight">Returns a unique class ID POLYMORPHICALLY. <a href="classicu_1_1TimeZone.html#a0940e0b4e2c513d11d4b240f0d41d42c">More...</a><br /></td></tr>
<tr class="separator:a0940e0b4e2c513d11d4b240f0d41d42c inherit pub_methods_classicu_1_1TimeZone"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:af73069049763ba918b9f7945974000f5 inherit pub_methods_classicu_1_1TimeZone"><td class="memItemLeft" align="right" valign="top">virtual int32_t </td><td class="memItemRight" valign="bottom"><a class="el" href="classicu_1_1TimeZone.html#af73069049763ba918b9f7945974000f5">getDSTSavings</a> () const</td></tr>
<tr class="memdesc:af73069049763ba918b9f7945974000f5 inherit pub_methods_classicu_1_1TimeZone"><td class="mdescLeft"> </td><td class="mdescRight">Returns the amount of time to be added to local standard time to get local wall clock time. <a href="classicu_1_1TimeZone.html#af73069049763ba918b9f7945974000f5">More...</a><br /></td></tr>
<tr class="separator:af73069049763ba918b9f7945974000f5 inherit pub_methods_classicu_1_1TimeZone"><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>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pro-methods"></a>
Protected Member Functions</h2></td></tr>
<tr class="memitem:ac897b1c6865b6d999bcf7b1493b50b74"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classicu_1_1BasicTimeZone.html#ac897b1c6865b6d999bcf7b1493b50b74">BasicTimeZone</a> ()</td></tr>
<tr class="memdesc:ac897b1c6865b6d999bcf7b1493b50b74"><td class="mdescLeft"> </td><td class="mdescRight">Default constructor. <a href="classicu_1_1BasicTimeZone.html#ac897b1c6865b6d999bcf7b1493b50b74">More...</a><br /></td></tr>
<tr class="separator:ac897b1c6865b6d999bcf7b1493b50b74"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a3b0b8275ef332b0bc0a0261317e27a01"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classicu_1_1BasicTimeZone.html#a3b0b8275ef332b0bc0a0261317e27a01">BasicTimeZone</a> (const <a class="el" href="classicu_1_1UnicodeString.html">UnicodeString</a> &id)</td></tr>
<tr class="memdesc:a3b0b8275ef332b0bc0a0261317e27a01"><td class="mdescLeft"> </td><td class="mdescRight">Construct a timezone with a given ID. <a href="classicu_1_1BasicTimeZone.html#a3b0b8275ef332b0bc0a0261317e27a01">More...</a><br /></td></tr>
<tr class="separator:a3b0b8275ef332b0bc0a0261317e27a01"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a94c53bbac7fd476d8cd07a11801ff48a"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classicu_1_1BasicTimeZone.html#a94c53bbac7fd476d8cd07a11801ff48a">BasicTimeZone</a> (const <a class="el" href="classicu_1_1BasicTimeZone.html">BasicTimeZone</a> &source)</td></tr>
<tr class="memdesc:a94c53bbac7fd476d8cd07a11801ff48a"><td class="mdescLeft"> </td><td class="mdescRight">Copy constructor. <a href="classicu_1_1BasicTimeZone.html#a94c53bbac7fd476d8cd07a11801ff48a">More...</a><br /></td></tr>
<tr class="separator:a94c53bbac7fd476d8cd07a11801ff48a"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:afb90e4bbd719cd9085826fe0f5a8f4ad"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classicu_1_1BasicTimeZone.html">BasicTimeZone</a> & </td><td class="memItemRight" valign="bottom"><a class="el" href="classicu_1_1BasicTimeZone.html#afb90e4bbd719cd9085826fe0f5a8f4ad">operator=</a> (const <a class="el" href="classicu_1_1BasicTimeZone.html">BasicTimeZone</a> &)=default</td></tr>
<tr class="memdesc:afb90e4bbd719cd9085826fe0f5a8f4ad"><td class="mdescLeft"> </td><td class="mdescRight">Copy assignment. <a href="classicu_1_1BasicTimeZone.html#afb90e4bbd719cd9085826fe0f5a8f4ad">More...</a><br /></td></tr>
<tr class="separator:afb90e4bbd719cd9085826fe0f5a8f4ad"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a50804b14ee33d52717f999681510b8ca"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classicu_1_1BasicTimeZone.html#a50804b14ee33d52717f999681510b8ca">getTimeZoneRulesAfter</a> (<a class="el" href="utypes_8h.html#ace1704e9e77d407d1eaaa2e73ec0c039">UDate</a> start, <a class="el" href="classicu_1_1InitialTimeZoneRule.html">InitialTimeZoneRule</a> *&initial, UVector *&transitionRules, <a class="el" href="utypes_8h.html#a3343c1c8a8377277046774691c98d78c">UErrorCode</a> &status) const</td></tr>
<tr class="memdesc:a50804b14ee33d52717f999681510b8ca"><td class="mdescLeft"> </td><td class="mdescRight">Gets the set of <a class="el" href="classicu_1_1TimeZoneRule.html" title="TimeZoneRule is a class representing a rule for time zone.">TimeZoneRule</a> instances applicable to the specified time and after. <a href="classicu_1_1BasicTimeZone.html#a50804b14ee33d52717f999681510b8ca">More...</a><br /></td></tr>
<tr class="separator:a50804b14ee33d52717f999681510b8ca"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header pro_methods_classicu_1_1TimeZone"><td colspan="2" onclick="javascript:toggleInherit('pro_methods_classicu_1_1TimeZone')"><img src="closed.png" alt="-"/> Protected Member Functions inherited from <a class="el" href="classicu_1_1TimeZone.html">icu::TimeZone</a></td></tr>
<tr class="memitem:aa2bd5490d049f9c12aed8d32edad585f inherit pro_methods_classicu_1_1TimeZone"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classicu_1_1TimeZone.html#aa2bd5490d049f9c12aed8d32edad585f">TimeZone</a> ()</td></tr>
<tr class="memdesc:aa2bd5490d049f9c12aed8d32edad585f inherit pro_methods_classicu_1_1TimeZone"><td class="mdescLeft"> </td><td class="mdescRight">Default constructor. <a href="classicu_1_1TimeZone.html#aa2bd5490d049f9c12aed8d32edad585f">More...</a><br /></td></tr>
<tr class="separator:aa2bd5490d049f9c12aed8d32edad585f inherit pro_methods_classicu_1_1TimeZone"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a61809c85d575f67e171648c840185d80 inherit pro_methods_classicu_1_1TimeZone"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classicu_1_1TimeZone.html#a61809c85d575f67e171648c840185d80">TimeZone</a> (const <a class="el" href="classicu_1_1UnicodeString.html">UnicodeString</a> &id)</td></tr>
<tr class="memdesc:a61809c85d575f67e171648c840185d80 inherit pro_methods_classicu_1_1TimeZone"><td class="mdescLeft"> </td><td class="mdescRight">Construct a <a class="el" href="classicu_1_1TimeZone.html" title="TimeZone represents a time zone offset, and also figures out daylight savings.">TimeZone</a> with a given ID. <a href="classicu_1_1TimeZone.html#a61809c85d575f67e171648c840185d80">More...</a><br /></td></tr>
<tr class="separator:a61809c85d575f67e171648c840185d80 inherit pro_methods_classicu_1_1TimeZone"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a4473aca6c7a6ea14a502f44febe1b8a2 inherit pro_methods_classicu_1_1TimeZone"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classicu_1_1TimeZone.html#a4473aca6c7a6ea14a502f44febe1b8a2">TimeZone</a> (const <a class="el" href="classicu_1_1TimeZone.html">TimeZone</a> &source)</td></tr>
<tr class="memdesc:a4473aca6c7a6ea14a502f44febe1b8a2 inherit pro_methods_classicu_1_1TimeZone"><td class="mdescLeft"> </td><td class="mdescRight">Copy constructor. <a href="classicu_1_1TimeZone.html#a4473aca6c7a6ea14a502f44febe1b8a2">More...</a><br /></td></tr>
<tr class="separator:a4473aca6c7a6ea14a502f44febe1b8a2 inherit pro_methods_classicu_1_1TimeZone"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a7b3f170ef0dc76e81249898960b787ba inherit pro_methods_classicu_1_1TimeZone"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classicu_1_1TimeZone.html">TimeZone</a> & </td><td class="memItemRight" valign="bottom"><a class="el" href="classicu_1_1TimeZone.html#a7b3f170ef0dc76e81249898960b787ba">operator=</a> (const <a class="el" href="classicu_1_1TimeZone.html">TimeZone</a> &right)</td></tr>
<tr class="memdesc:a7b3f170ef0dc76e81249898960b787ba inherit pro_methods_classicu_1_1TimeZone"><td class="mdescLeft"> </td><td class="mdescRight">Default assignment operator. <a href="classicu_1_1TimeZone.html#a7b3f170ef0dc76e81249898960b787ba">More...</a><br /></td></tr>
<tr class="separator:a7b3f170ef0dc76e81249898960b787ba inherit pro_methods_classicu_1_1TimeZone"><td class="memSeparator" colspan="2"> </td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pro-static-attribs"></a>
Static Protected Attributes</h2></td></tr>
<tr class="memitem:ae79ae7bf68e441757e8572b9d96c6eed"><td class="memItemLeft" align="right" valign="top">static constexpr int32_t </td><td class="memItemRight" valign="bottom"><a class="el" href="classicu_1_1BasicTimeZone.html#ae79ae7bf68e441757e8572b9d96c6eed">kStdDstMask</a> = kDaylight</td></tr>
<tr class="memdesc:ae79ae7bf68e441757e8572b9d96c6eed"><td class="mdescLeft"> </td><td class="mdescRight">A time type option bit mask used by getOffsetFromLocal. <a href="classicu_1_1BasicTimeZone.html#ae79ae7bf68e441757e8572b9d96c6eed">More...</a><br /></td></tr>
<tr class="separator:ae79ae7bf68e441757e8572b9d96c6eed"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a02eb10f55154535df81dab5228a3e894"><td class="memItemLeft" align="right" valign="top">static constexpr int32_t </td><td class="memItemRight" valign="bottom"><a class="el" href="classicu_1_1BasicTimeZone.html#a02eb10f55154535df81dab5228a3e894">kFormerLatterMask</a> = kLatter</td></tr>
<tr class="memdesc:a02eb10f55154535df81dab5228a3e894"><td class="mdescLeft"> </td><td class="mdescRight">A time type option bit mask used by getOffsetFromLocal. <a href="classicu_1_1BasicTimeZone.html#a02eb10f55154535df81dab5228a3e894">More...</a><br /></td></tr>
<tr class="separator:a02eb10f55154535df81dab5228a3e894"><td class="memSeparator" colspan="2"> </td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="inherited"></a>
Additional Inherited Members</h2></td></tr>
<tr class="inherit_header pub_static_methods_classicu_1_1TimeZone"><td colspan="2" onclick="javascript:toggleInherit('pub_static_methods_classicu_1_1TimeZone')"><img src="closed.png" alt="-"/> Static Public Member Functions inherited from <a class="el" href="classicu_1_1TimeZone.html">icu::TimeZone</a></td></tr>
<tr class="memitem:adef7a2ddaf2f28f0912fe1a3142d5de7 inherit pub_static_methods_classicu_1_1TimeZone"><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="classicu_1_1TimeZone.html">TimeZone</a> & </td><td class="memItemRight" valign="bottom"><a class="el" href="classicu_1_1TimeZone.html#adef7a2ddaf2f28f0912fe1a3142d5de7">getUnknown</a> ()</td></tr>
<tr class="memdesc:adef7a2ddaf2f28f0912fe1a3142d5de7 inherit pub_static_methods_classicu_1_1TimeZone"><td class="mdescLeft"> </td><td class="mdescRight">Returns the "unknown" time zone. <a href="classicu_1_1TimeZone.html#adef7a2ddaf2f28f0912fe1a3142d5de7">More...</a><br /></td></tr>
<tr class="separator:adef7a2ddaf2f28f0912fe1a3142d5de7 inherit pub_static_methods_classicu_1_1TimeZone"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:af489fa7ab23c86892f34dd76b0b82882 inherit pub_static_methods_classicu_1_1TimeZone"><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="classicu_1_1TimeZone.html">TimeZone</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classicu_1_1TimeZone.html#af489fa7ab23c86892f34dd76b0b82882">getGMT</a> ()</td></tr>
<tr class="memdesc:af489fa7ab23c86892f34dd76b0b82882 inherit pub_static_methods_classicu_1_1TimeZone"><td class="mdescLeft"> </td><td class="mdescRight">The GMT (=UTC) time zone has a raw offset of zero and does not use daylight savings time. <a href="classicu_1_1TimeZone.html#af489fa7ab23c86892f34dd76b0b82882">More...</a><br /></td></tr>
<tr class="separator:af489fa7ab23c86892f34dd76b0b82882 inherit pub_static_methods_classicu_1_1TimeZone"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a35da0507b62754ffe5d8d59c19775cdb inherit pub_static_methods_classicu_1_1TimeZone"><td class="memItemLeft" align="right" valign="top">static <a class="el" href="classicu_1_1TimeZone.html">TimeZone</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classicu_1_1TimeZone.html#a35da0507b62754ffe5d8d59c19775cdb">createTimeZone</a> (const <a class="el" href="classicu_1_1UnicodeString.html">UnicodeString</a> &ID)</td></tr>
<tr class="memdesc:a35da0507b62754ffe5d8d59c19775cdb inherit pub_static_methods_classicu_1_1TimeZone"><td class="mdescLeft"> </td><td class="mdescRight">Creates a <code><a class="el" href="classicu_1_1TimeZone.html" title="TimeZone represents a time zone offset, and also figures out daylight savings.">TimeZone</a></code> for the given ID. <a href="classicu_1_1TimeZone.html#a35da0507b62754ffe5d8d59c19775cdb">More...</a><br /></td></tr>
<tr class="separator:a35da0507b62754ffe5d8d59c19775cdb inherit pub_static_methods_classicu_1_1TimeZone"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a667313ec7d27682aec7f87c6ffe43742 inherit pub_static_methods_classicu_1_1TimeZone"><td class="memItemLeft" align="right" valign="top">static <a class="el" href="classicu_1_1StringEnumeration.html">StringEnumeration</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classicu_1_1TimeZone.html#a667313ec7d27682aec7f87c6ffe43742">createTimeZoneIDEnumeration</a> (<a class="el" href="ucal_8h.html#a246d867677ec1a02775072aa0b5b018a">USystemTimeZoneType</a> zoneType, const char *region, const int32_t *rawOffset, <a class="el" href="utypes_8h.html#a3343c1c8a8377277046774691c98d78c">UErrorCode</a> &ec)</td></tr>
<tr class="memdesc:a667313ec7d27682aec7f87c6ffe43742 inherit pub_static_methods_classicu_1_1TimeZone"><td class="mdescLeft"> </td><td class="mdescRight">Returns an enumeration over system time zone IDs with the given filter conditions. <a href="classicu_1_1TimeZone.html#a667313ec7d27682aec7f87c6ffe43742">More...</a><br /></td></tr>
<tr class="separator:a667313ec7d27682aec7f87c6ffe43742 inherit pub_static_methods_classicu_1_1TimeZone"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:abf0d7245523395b3d68f62ffe358857d inherit pub_static_methods_classicu_1_1TimeZone"><td class="memItemLeft" align="right" valign="top">static <a class="el" href="classicu_1_1StringEnumeration.html">StringEnumeration</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classicu_1_1TimeZone.html#abf0d7245523395b3d68f62ffe358857d">createEnumeration</a> ()</td></tr>
<tr class="memdesc:abf0d7245523395b3d68f62ffe358857d inherit pub_static_methods_classicu_1_1TimeZone"><td class="mdescLeft"> </td><td class="mdescRight">Returns an enumeration over all recognized time zone IDs. <a href="classicu_1_1TimeZone.html#abf0d7245523395b3d68f62ffe358857d">More...</a><br /></td></tr>
<tr class="separator:abf0d7245523395b3d68f62ffe358857d inherit pub_static_methods_classicu_1_1TimeZone"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aab75d971f2d55d90569920adaf921a05 inherit pub_static_methods_classicu_1_1TimeZone"><td class="memItemLeft" align="right" valign="top">static <a class="el" href="classicu_1_1StringEnumeration.html">StringEnumeration</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classicu_1_1TimeZone.html#aab75d971f2d55d90569920adaf921a05">createEnumeration</a> (<a class="el" href="utypes_8h.html#a3343c1c8a8377277046774691c98d78c">UErrorCode</a> &status)</td></tr>
<tr class="memdesc:aab75d971f2d55d90569920adaf921a05 inherit pub_static_methods_classicu_1_1TimeZone"><td class="mdescLeft"> </td><td class="mdescRight">Returns an enumeration over all recognized time zone IDs. <a href="classicu_1_1TimeZone.html#aab75d971f2d55d90569920adaf921a05">More...</a><br /></td></tr>
<tr class="separator:aab75d971f2d55d90569920adaf921a05 inherit pub_static_methods_classicu_1_1TimeZone"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aafb457e44cbce8b88500039f4f62c2ad inherit pub_static_methods_classicu_1_1TimeZone"><td class="memItemLeft" align="right" valign="top">static <a class="el" href="classicu_1_1StringEnumeration.html">StringEnumeration</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classicu_1_1TimeZone.html#aafb457e44cbce8b88500039f4f62c2ad">createEnumeration</a> (int32_t rawOffset)</td></tr>
<tr class="memdesc:aafb457e44cbce8b88500039f4f62c2ad inherit pub_static_methods_classicu_1_1TimeZone"><td class="mdescLeft"> </td><td class="mdescRight">Returns an enumeration over time zone IDs with a given raw offset from GMT. <a href="classicu_1_1TimeZone.html#aafb457e44cbce8b88500039f4f62c2ad">More...</a><br /></td></tr>
<tr class="separator:aafb457e44cbce8b88500039f4f62c2ad inherit pub_static_methods_classicu_1_1TimeZone"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a2e106df9633b2762806654eb6e546c26 inherit pub_static_methods_classicu_1_1TimeZone"><td class="memItemLeft" align="right" valign="top">static <a class="el" href="classicu_1_1StringEnumeration.html">StringEnumeration</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classicu_1_1TimeZone.html#a2e106df9633b2762806654eb6e546c26">createEnumerationForRawOffset</a> (int32_t rawOffset, <a class="el" href="utypes_8h.html#a3343c1c8a8377277046774691c98d78c">UErrorCode</a> &status)</td></tr>
<tr class="memdesc:a2e106df9633b2762806654eb6e546c26 inherit pub_static_methods_classicu_1_1TimeZone"><td class="mdescLeft"> </td><td class="mdescRight">Returns an enumeration over time zone IDs with a given raw offset from GMT. <a href="classicu_1_1TimeZone.html#a2e106df9633b2762806654eb6e546c26">More...</a><br /></td></tr>
<tr class="separator:a2e106df9633b2762806654eb6e546c26 inherit pub_static_methods_classicu_1_1TimeZone"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:abe776dec6829bd7994d97e710e3a689f inherit pub_static_methods_classicu_1_1TimeZone"><td class="memItemLeft" align="right" valign="top">static <a class="el" href="classicu_1_1StringEnumeration.html">StringEnumeration</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classicu_1_1TimeZone.html#abe776dec6829bd7994d97e710e3a689f">createEnumeration</a> (const char *region)</td></tr>
<tr class="memdesc:abe776dec6829bd7994d97e710e3a689f inherit pub_static_methods_classicu_1_1TimeZone"><td class="mdescLeft"> </td><td class="mdescRight">Returns an enumeration over time zone IDs associated with the given region. <a href="classicu_1_1TimeZone.html#abe776dec6829bd7994d97e710e3a689f">More...</a><br /></td></tr>
<tr class="separator:abe776dec6829bd7994d97e710e3a689f inherit pub_static_methods_classicu_1_1TimeZone"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aea439148512f6bb1ad7afb42117c8ffa inherit pub_static_methods_classicu_1_1TimeZone"><td class="memItemLeft" align="right" valign="top">static <a class="el" href="classicu_1_1StringEnumeration.html">StringEnumeration</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classicu_1_1TimeZone.html#aea439148512f6bb1ad7afb42117c8ffa">createEnumerationForRegion</a> (const char *region, <a class="el" href="utypes_8h.html#a3343c1c8a8377277046774691c98d78c">UErrorCode</a> &status)</td></tr>
<tr class="memdesc:aea439148512f6bb1ad7afb42117c8ffa inherit pub_static_methods_classicu_1_1TimeZone"><td class="mdescLeft"> </td><td class="mdescRight">Returns an enumeration over time zone IDs associated with the given region. <a href="classicu_1_1TimeZone.html#aea439148512f6bb1ad7afb42117c8ffa">More...</a><br /></td></tr>
<tr class="separator:aea439148512f6bb1ad7afb42117c8ffa inherit pub_static_methods_classicu_1_1TimeZone"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a947eebfd2f8206121cdddeda0dfbedd5 inherit pub_static_methods_classicu_1_1TimeZone"><td class="memItemLeft" align="right" valign="top">static int32_t </td><td class="memItemRight" valign="bottom"><a class="el" href="classicu_1_1TimeZone.html#a947eebfd2f8206121cdddeda0dfbedd5">countEquivalentIDs</a> (const <a class="el" href="classicu_1_1UnicodeString.html">UnicodeString</a> &id)</td></tr>
<tr class="memdesc:a947eebfd2f8206121cdddeda0dfbedd5 inherit pub_static_methods_classicu_1_1TimeZone"><td class="mdescLeft"> </td><td class="mdescRight">Returns the number of IDs in the equivalency group that includes the given ID. <a href="classicu_1_1TimeZone.html#a947eebfd2f8206121cdddeda0dfbedd5">More...</a><br /></td></tr>
<tr class="separator:a947eebfd2f8206121cdddeda0dfbedd5 inherit pub_static_methods_classicu_1_1TimeZone"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a85a8a067a571dc208707777d7c2506ff inherit pub_static_methods_classicu_1_1TimeZone"><td class="memItemLeft" align="right" valign="top">static <a class="el" href="classicu_1_1UnicodeString.html">UnicodeString</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classicu_1_1TimeZone.html#a85a8a067a571dc208707777d7c2506ff">getEquivalentID</a> (const <a class="el" href="classicu_1_1UnicodeString.html">UnicodeString</a> &id, int32_t index)</td></tr>
<tr class="memdesc:a85a8a067a571dc208707777d7c2506ff inherit pub_static_methods_classicu_1_1TimeZone"><td class="mdescLeft"> </td><td class="mdescRight">Returns an ID in the equivalency group that includes the given ID. <a href="classicu_1_1TimeZone.html#a85a8a067a571dc208707777d7c2506ff">More...</a><br /></td></tr>
<tr class="separator:a85a8a067a571dc208707777d7c2506ff inherit pub_static_methods_classicu_1_1TimeZone"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a5f820523041e38bff46f22567ef6cf86 inherit pub_static_methods_classicu_1_1TimeZone"><td class="memItemLeft" align="right" valign="top">static <a class="el" href="classicu_1_1TimeZone.html">TimeZone</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classicu_1_1TimeZone.html#a5f820523041e38bff46f22567ef6cf86">detectHostTimeZone</a> ()</td></tr>
<tr class="memdesc:a5f820523041e38bff46f22567ef6cf86 inherit pub_static_methods_classicu_1_1TimeZone"><td class="mdescLeft"> </td><td class="mdescRight">Creates an instance of <a class="el" href="classicu_1_1TimeZone.html" title="TimeZone represents a time zone offset, and also figures out daylight savings.">TimeZone</a> detected from the current host system configuration. <a href="classicu_1_1TimeZone.html#a5f820523041e38bff46f22567ef6cf86">More...</a><br /></td></tr>
<tr class="separator:a5f820523041e38bff46f22567ef6cf86 inherit pub_static_methods_classicu_1_1TimeZone"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:afdcfed181067b93151720686067f9526 inherit pub_static_methods_classicu_1_1TimeZone"><td class="memItemLeft" align="right" valign="top">static <a class="el" href="classicu_1_1TimeZone.html">TimeZone</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classicu_1_1TimeZone.html#afdcfed181067b93151720686067f9526">createDefault</a> ()</td></tr>
<tr class="memdesc:afdcfed181067b93151720686067f9526 inherit pub_static_methods_classicu_1_1TimeZone"><td class="mdescLeft"> </td><td class="mdescRight">Creates a new copy of the default <a class="el" href="classicu_1_1TimeZone.html" title="TimeZone represents a time zone offset, and also figures out daylight savings.">TimeZone</a> for this host. <a href="classicu_1_1TimeZone.html#afdcfed181067b93151720686067f9526">More...</a><br /></td></tr>
<tr class="separator:afdcfed181067b93151720686067f9526 inherit pub_static_methods_classicu_1_1TimeZone"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a88f00ebfe030cca8e4cc973607d82ab3 inherit pub_static_methods_classicu_1_1TimeZone"><td class="memItemLeft" align="right" valign="top">static <a class="el" href="classicu_1_1TimeZone.html">TimeZone</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classicu_1_1TimeZone.html#a88f00ebfe030cca8e4cc973607d82ab3">forLocaleOrDefault</a> (const <a class="el" href="classicu_1_1Locale.html">Locale</a> &locale)</td></tr>
<tr class="memdesc:a88f00ebfe030cca8e4cc973607d82ab3 inherit pub_static_methods_classicu_1_1TimeZone"><td class="mdescLeft"> </td><td class="mdescRight">If the locale contains the timezone keyword, creates a copy of that <a class="el" href="classicu_1_1TimeZone.html" title="TimeZone represents a time zone offset, and also figures out daylight savings.">TimeZone</a>. <a href="classicu_1_1TimeZone.html#a88f00ebfe030cca8e4cc973607d82ab3">More...</a><br /></td></tr>
<tr class="separator:a88f00ebfe030cca8e4cc973607d82ab3 inherit pub_static_methods_classicu_1_1TimeZone"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a9a775b9521f3defdde18658bd6b8ec57 inherit pub_static_methods_classicu_1_1TimeZone"><td class="memItemLeft" align="right" valign="top">static void </td><td class="memItemRight" valign="bottom"><a class="el" href="classicu_1_1TimeZone.html#a9a775b9521f3defdde18658bd6b8ec57">adoptDefault</a> (<a class="el" href="classicu_1_1TimeZone.html">TimeZone</a> *zone)</td></tr>
<tr class="memdesc:a9a775b9521f3defdde18658bd6b8ec57 inherit pub_static_methods_classicu_1_1TimeZone"><td class="mdescLeft"> </td><td class="mdescRight">Sets the default time zone (i.e., what's returned by <a class="el" href="classicu_1_1TimeZone.html#afdcfed181067b93151720686067f9526" title="Creates a new copy of the default TimeZone for this host.">createDefault()</a>) to be the specified time zone. <a href="classicu_1_1TimeZone.html#a9a775b9521f3defdde18658bd6b8ec57">More...</a><br /></td></tr>
<tr class="separator:a9a775b9521f3defdde18658bd6b8ec57 inherit pub_static_methods_classicu_1_1TimeZone"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a1f13c95664fa43a3bee9a5d00408a36b inherit pub_static_methods_classicu_1_1TimeZone"><td class="memItemLeft" align="right" valign="top">static void </td><td class="memItemRight" valign="bottom"><a class="el" href="classicu_1_1TimeZone.html#a1f13c95664fa43a3bee9a5d00408a36b">setDefault</a> (const <a class="el" href="classicu_1_1TimeZone.html">TimeZone</a> &zone)</td></tr>
<tr class="memdesc:a1f13c95664fa43a3bee9a5d00408a36b inherit pub_static_methods_classicu_1_1TimeZone"><td class="mdescLeft"> </td><td class="mdescRight">Same as <a class="el" href="classicu_1_1TimeZone.html#a9a775b9521f3defdde18658bd6b8ec57" title="Sets the default time zone (i.e., what's returned by createDefault()) to be the specified time zone.">adoptDefault()</a>, except that the <a class="el" href="classicu_1_1TimeZone.html" title="TimeZone represents a time zone offset, and also figures out daylight savings.">TimeZone</a> object passed in is NOT adopted; the caller remains responsible for deleting it. <a href="classicu_1_1TimeZone.html#a1f13c95664fa43a3bee9a5d00408a36b">More...</a><br /></td></tr>
<tr class="separator:a1f13c95664fa43a3bee9a5d00408a36b inherit pub_static_methods_classicu_1_1TimeZone"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a46d7ac676293df7b26c7321177b470e2 inherit pub_static_methods_classicu_1_1TimeZone"><td class="memItemLeft" align="right" valign="top">static const char * </td><td class="memItemRight" valign="bottom"><a class="el" href="classicu_1_1TimeZone.html#a46d7ac676293df7b26c7321177b470e2">getTZDataVersion</a> (<a class="el" href="utypes_8h.html#a3343c1c8a8377277046774691c98d78c">UErrorCode</a> &status)</td></tr>
<tr class="memdesc:a46d7ac676293df7b26c7321177b470e2 inherit pub_static_methods_classicu_1_1TimeZone"><td class="mdescLeft"> </td><td class="mdescRight">Returns the timezone data version currently used by ICU. <a href="classicu_1_1TimeZone.html#a46d7ac676293df7b26c7321177b470e2">More...</a><br /></td></tr>
<tr class="separator:a46d7ac676293df7b26c7321177b470e2 inherit pub_static_methods_classicu_1_1TimeZone"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aa7462041e2bc6113c7068081ea5fc5f6 inherit pub_static_methods_classicu_1_1TimeZone"><td class="memItemLeft" align="right" valign="top">static <a class="el" href="classicu_1_1UnicodeString.html">UnicodeString</a> & </td><td class="memItemRight" valign="bottom"><a class="el" href="classicu_1_1TimeZone.html#aa7462041e2bc6113c7068081ea5fc5f6">getCanonicalID</a> (const <a class="el" href="classicu_1_1UnicodeString.html">UnicodeString</a> &id, <a class="el" href="classicu_1_1UnicodeString.html">UnicodeString</a> &canonicalID, <a class="el" href="utypes_8h.html#a3343c1c8a8377277046774691c98d78c">UErrorCode</a> &status)</td></tr>
<tr class="memdesc:aa7462041e2bc6113c7068081ea5fc5f6 inherit pub_static_methods_classicu_1_1TimeZone"><td class="mdescLeft"> </td><td class="mdescRight">Returns the canonical system timezone ID or the normalized custom time zone ID for the given time zone ID. <a href="classicu_1_1TimeZone.html#aa7462041e2bc6113c7068081ea5fc5f6">More...</a><br /></td></tr>
<tr class="separator:aa7462041e2bc6113c7068081ea5fc5f6 inherit pub_static_methods_classicu_1_1TimeZone"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad0360ecb656b6c86b2b44970b7ee5662 inherit pub_static_methods_classicu_1_1TimeZone"><td class="memItemLeft" align="right" valign="top">static <a class="el" href="classicu_1_1UnicodeString.html">UnicodeString</a> & </td><td class="memItemRight" valign="bottom"><a class="el" href="classicu_1_1TimeZone.html#ad0360ecb656b6c86b2b44970b7ee5662">getCanonicalID</a> (const <a class="el" href="classicu_1_1UnicodeString.html">UnicodeString</a> &id, <a class="el" href="classicu_1_1UnicodeString.html">UnicodeString</a> &canonicalID, <a class="el" href="umachine_8h.html#a349ef00011f20ccd1d3b424445681aa5">UBool</a> &isSystemID, <a class="el" href="utypes_8h.html#a3343c1c8a8377277046774691c98d78c">UErrorCode</a> &status)</td></tr>
<tr class="memdesc:ad0360ecb656b6c86b2b44970b7ee5662 inherit pub_static_methods_classicu_1_1TimeZone"><td class="mdescLeft"> </td><td class="mdescRight">Returns the canonical system time zone ID or the normalized custom time zone ID for the given time zone ID. <a href="classicu_1_1TimeZone.html#ad0360ecb656b6c86b2b44970b7ee5662">More...</a><br /></td></tr>
<tr class="separator:ad0360ecb656b6c86b2b44970b7ee5662 inherit pub_static_methods_classicu_1_1TimeZone"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ac6e93cddc71c33ae938580a839c8f543 inherit pub_static_methods_classicu_1_1TimeZone"><td class="memItemLeft" align="right" valign="top">static <a class="el" href="classicu_1_1UnicodeString.html">UnicodeString</a> & </td><td class="memItemRight" valign="bottom"><a class="el" href="classicu_1_1TimeZone.html#ac6e93cddc71c33ae938580a839c8f543">getIanaID</a> (const <a class="el" href="classicu_1_1UnicodeString.html">UnicodeString</a> &id, <a class="el" href="classicu_1_1UnicodeString.html">UnicodeString</a> &ianaID, <a class="el" href="utypes_8h.html#a3343c1c8a8377277046774691c98d78c">UErrorCode</a> &status)</td></tr>
<tr class="memdesc:ac6e93cddc71c33ae938580a839c8f543 inherit pub_static_methods_classicu_1_1TimeZone"><td class="mdescLeft"> </td><td class="mdescRight">Returns the preferred time zone ID in the IANA time zone database for the given time zone ID. <a href="classicu_1_1TimeZone.html#ac6e93cddc71c33ae938580a839c8f543">More...</a><br /></td></tr>
<tr class="separator:ac6e93cddc71c33ae938580a839c8f543 inherit pub_static_methods_classicu_1_1TimeZone"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a216766958df6b1931bb7603ae78d114e inherit pub_static_methods_classicu_1_1TimeZone"><td class="memItemLeft" align="right" valign="top">static <a class="el" href="classicu_1_1UnicodeString.html">UnicodeString</a> & </td><td class="memItemRight" valign="bottom"><a class="el" href="classicu_1_1TimeZone.html#a216766958df6b1931bb7603ae78d114e">getWindowsID</a> (const <a class="el" href="classicu_1_1UnicodeString.html">UnicodeString</a> &id, <a class="el" href="classicu_1_1UnicodeString.html">UnicodeString</a> &winid, <a class="el" href="utypes_8h.html#a3343c1c8a8377277046774691c98d78c">UErrorCode</a> &status)</td></tr>
<tr class="memdesc:a216766958df6b1931bb7603ae78d114e inherit pub_static_methods_classicu_1_1TimeZone"><td class="mdescLeft"> </td><td class="mdescRight">Converts a system time zone ID to an equivalent Windows time zone ID. <a href="classicu_1_1TimeZone.html#a216766958df6b1931bb7603ae78d114e">More...</a><br /></td></tr>
<tr class="separator:a216766958df6b1931bb7603ae78d114e inherit pub_static_methods_classicu_1_1TimeZone"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a0872f72c5c3204de3c61502be568d72d inherit pub_static_methods_classicu_1_1TimeZone"><td class="memItemLeft" align="right" valign="top">static <a class="el" href="classicu_1_1UnicodeString.html">UnicodeString</a> & </td><td class="memItemRight" valign="bottom"><a class="el" href="classicu_1_1TimeZone.html#a0872f72c5c3204de3c61502be568d72d">getIDForWindowsID</a> (const <a class="el" href="classicu_1_1UnicodeString.html">UnicodeString</a> &winid, const char *region, <a class="el" href="classicu_1_1UnicodeString.html">UnicodeString</a> &id, <a class="el" href="utypes_8h.html#a3343c1c8a8377277046774691c98d78c">UErrorCode</a> &status)</td></tr>
<tr class="memdesc:a0872f72c5c3204de3c61502be568d72d inherit pub_static_methods_classicu_1_1TimeZone"><td class="mdescLeft"> </td><td class="mdescRight">Converts a Windows time zone ID to an equivalent system time zone ID for a region. <a href="classicu_1_1TimeZone.html#a0872f72c5c3204de3c61502be568d72d">More...</a><br /></td></tr>
<tr class="separator:a0872f72c5c3204de3c61502be568d72d inherit pub_static_methods_classicu_1_1TimeZone"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a0383bb9adfa87e2d63d9d2d9ab720bc1 inherit pub_static_methods_classicu_1_1TimeZone"><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_1TimeZone.html#a0383bb9adfa87e2d63d9d2d9ab720bc1">getStaticClassID</a> ()</td></tr>
<tr class="memdesc:a0383bb9adfa87e2d63d9d2d9ab720bc1 inherit pub_static_methods_classicu_1_1TimeZone"><td class="mdescLeft"> </td><td class="mdescRight">Return the class ID for this class. <a href="classicu_1_1TimeZone.html#a0383bb9adfa87e2d63d9d2d9ab720bc1">More...</a><br /></td></tr>
<tr class="separator:a0383bb9adfa87e2d63d9d2d9ab720bc1 inherit pub_static_methods_classicu_1_1TimeZone"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a09239f955bfdcf91ef7612483783c74a inherit pub_static_methods_classicu_1_1TimeZone"><td class="memItemLeft" align="right" valign="top">static int32_t </td><td class="memItemRight" valign="bottom"><a class="el" href="classicu_1_1TimeZone.html#a09239f955bfdcf91ef7612483783c74a">getRegion</a> (const <a class="el" href="classicu_1_1UnicodeString.html">UnicodeString</a> &id, char *region, int32_t capacity, <a class="el" href="utypes_8h.html#a3343c1c8a8377277046774691c98d78c">UErrorCode</a> &status)</td></tr>
<tr class="memdesc:a09239f955bfdcf91ef7612483783c74a inherit pub_static_methods_classicu_1_1TimeZone"><td class="mdescLeft"> </td><td class="mdescRight">Gets the region code associated with the given system time zone ID. <a href="classicu_1_1TimeZone.html#a09239f955bfdcf91ef7612483783c74a">More...</a><br /></td></tr>
<tr class="separator:a09239f955bfdcf91ef7612483783c74a inherit pub_static_methods_classicu_1_1TimeZone"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a8eeb56a599cbe35410bcf5d753deffd6 inherit pub_static_methods_classicu_1_1TimeZone"><td class="memItemLeft" align="right" valign="top">static const char16_t * </td><td class="memItemRight" valign="bottom"><a class="el" href="classicu_1_1TimeZone.html#a8eeb56a599cbe35410bcf5d753deffd6">getRegion</a> (const <a class="el" href="classicu_1_1UnicodeString.html">UnicodeString</a> &id, <a class="el" href="utypes_8h.html#a3343c1c8a8377277046774691c98d78c">UErrorCode</a> &status)</td></tr>
<tr class="memdesc:a8eeb56a599cbe35410bcf5d753deffd6 inherit pub_static_methods_classicu_1_1TimeZone"><td class="mdescLeft"> </td><td class="mdescRight">Returns the region code associated with the given zone, or nullptr if the zone is not known. <a href="classicu_1_1TimeZone.html#a8eeb56a599cbe35410bcf5d753deffd6">More...</a><br /></td></tr>
<tr class="separator:a8eeb56a599cbe35410bcf5d753deffd6 inherit pub_static_methods_classicu_1_1TimeZone"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header pro_static_methods_classicu_1_1TimeZone"><td colspan="2" onclick="javascript:toggleInherit('pro_static_methods_classicu_1_1TimeZone')"><img src="closed.png" alt="-"/> Static Protected Member Functions inherited from <a class="el" href="classicu_1_1TimeZone.html">icu::TimeZone</a></td></tr>
<tr class="memitem:a62008aab8da1a8bfa2ba898675f55e9c inherit pro_static_methods_classicu_1_1TimeZone"><td class="memItemLeft" align="right" valign="top">static <a class="el" href="ures_8h.html#a7391119e9274be9ba2e6892b48a2bbbe">UResourceBundle</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classicu_1_1TimeZone.html#a62008aab8da1a8bfa2ba898675f55e9c">loadRule</a> (const <a class="el" href="ures_8h.html#a7391119e9274be9ba2e6892b48a2bbbe">UResourceBundle</a> *top, const <a class="el" href="classicu_1_1UnicodeString.html">UnicodeString</a> &ruleid, <a class="el" href="ures_8h.html#a7391119e9274be9ba2e6892b48a2bbbe">UResourceBundle</a> *oldbundle, <a class="el" href="utypes_8h.html#a3343c1c8a8377277046774691c98d78c">UErrorCode</a> &status)</td></tr>
<tr class="memdesc:a62008aab8da1a8bfa2ba898675f55e9c inherit pro_static_methods_classicu_1_1TimeZone"><td class="mdescLeft"> </td><td class="mdescRight">Utility function. <a href="classicu_1_1TimeZone.html#a62008aab8da1a8bfa2ba898675f55e9c">More...</a><br /></td></tr>
<tr class="separator:a62008aab8da1a8bfa2ba898675f55e9c inherit pro_static_methods_classicu_1_1TimeZone"><td class="memSeparator" colspan="2"> </td></tr>
</table>
<a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2>
<div class="textblock"><p><code><a class="el" href="classicu_1_1BasicTimeZone.html" title="BasicTimeZone is an abstract class extending TimeZone.">BasicTimeZone</a></code> is an abstract class extending <code><a class="el" href="classicu_1_1TimeZone.html" title="TimeZone represents a time zone offset, and also figures out daylight savings.">TimeZone</a></code>. </p>
<p>This class provides some additional methods to access time zone transitions and rules. All ICU <code><a class="el" href="classicu_1_1TimeZone.html" title="TimeZone represents a time zone offset, and also figures out daylight savings.">TimeZone</a></code> concrete subclasses extend this class. </p><dl class="stable"><dt><b><a class="el" href="stable.html#_stable003706">Stable:</a></b></dt><dd>ICU 3.8 </dd></dl>
<p class="definition">Definition at line <a class="el" href="basictz_8h_source.html#l00038">38</a> of file <a class="el" href="basictz_8h_source.html">basictz.h</a>.</p>
</div><h2 class="groupheader">Member Enumeration Documentation</h2>
<a id="a17211c6d41ce2b74c4c705e4b7dc795d"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a17211c6d41ce2b74c4c705e4b7dc795d">◆ </a></span>anonymous enum</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">anonymous enum</td>
</tr>
</table>
</div><div class="memdoc">
<p>The time type option bit flags used by getOffsetFromLocal. </p>
<dl class="internal"><dt><b>Internal:</b></dt><dd>Do not use.</dd></dl>
<p>This API is for internal use only. </p>
<p class="definition">Definition at line <a class="el" href="basictz_8h_source.html#l00170">170</a> of file <a class="el" href="basictz_8h_source.html">basictz.h</a>.</p>
</div>
</div>
<h2 class="groupheader">Constructor & Destructor Documentation</h2>
<a id="aa2d509be0eba95db2df22efd4b27b6d1"></a>
<h2 class="memtitle"><span class="permalink"><a href="#aa2d509be0eba95db2df22efd4b27b6d1">◆ </a></span>~BasicTimeZone()</h2>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">virtual icu::BasicTimeZone::~BasicTimeZone </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>
<dl class="stable"><dt><b><a class="el" href="stable.html#_stable003707">Stable:</a></b></dt><dd>ICU 3.8 </dd></dl>
</div>
</div>
<a id="ac897b1c6865b6d999bcf7b1493b50b74"></a>
<h2 class="memtitle"><span class="permalink"><a href="#ac897b1c6865b6d999bcf7b1493b50b74">◆ </a></span>BasicTimeZone() <span class="overload">[1/3]</span></h2>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">icu::BasicTimeZone::BasicTimeZone </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">protected</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Default constructor. </p>
<dl class="stable"><dt><b><a class="el" href="stable.html#_stable003716">Stable:</a></b></dt><dd>ICU 3.8 </dd></dl>
</div>
</div>
<a id="a3b0b8275ef332b0bc0a0261317e27a01"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a3b0b8275ef332b0bc0a0261317e27a01">◆ </a></span>BasicTimeZone() <span class="overload">[2/3]</span></h2>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">icu::BasicTimeZone::BasicTimeZone </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classicu_1_1UnicodeString.html">UnicodeString</a> & </td>
<td class="paramname"><em>id</em></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">protected</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Construct a timezone with a given ID. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">id</td><td>a system time zone ID </td></tr>
</table>
</dd>
</dl>
<dl class="stable"><dt><b><a class="el" href="stable.html#_stable003717">Stable:</a></b></dt><dd>ICU 3.8 </dd></dl>
</div>
</div>
<a id="a94c53bbac7fd476d8cd07a11801ff48a"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a94c53bbac7fd476d8cd07a11801ff48a">◆ </a></span>BasicTimeZone() <span class="overload">[3/3]</span></h2>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">icu::BasicTimeZone::BasicTimeZone </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classicu_1_1BasicTimeZone.html">BasicTimeZone</a> & </td>
<td class="paramname"><em>source</em></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">protected</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Copy constructor. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">source</td><td>the object to be copied. </td></tr>
</table>
</dd>
</dl>
<dl class="stable"><dt><b><a class="el" href="stable.html#_stable003718">Stable:</a></b></dt><dd>ICU 3.8 </dd></dl>
</div>
</div>
<h2 class="groupheader">Member Function Documentation</h2>
<a id="aa75c3d1ee6770fbd5211c79260d4d0c4"></a>
<h2 class="memtitle"><span class="permalink"><a href="#aa75c3d1ee6770fbd5211c79260d4d0c4">◆ </a></span>clone()</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="classicu_1_1BasicTimeZone.html">BasicTimeZone</a>* icu::BasicTimeZone::clone </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">pure virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Clones this object polymorphically. </p>
<p>The caller owns the result and should delete it when done. </p><dl class="section return"><dt>Returns</dt><dd>clone, or nullptr if an error occurred </dd></dl>
<dl class="stable"><dt><b><a class="el" href="stable.html#_stable003708">Stable:</a></b></dt><dd>ICU 3.8 </dd></dl>
<p>Implements <a class="el" href="classicu_1_1TimeZone.html#a1e5a80850ff6b8d9eeee0510cdcd7054">icu::TimeZone</a>.</p>
<p>Implemented in <a class="el" href="classicu_1_1VTimeZone.html#ab7561b62bb4eec63488d5596cb46ba41">icu::VTimeZone</a>, <a class="el" href="classicu_1_1SimpleTimeZone.html#a5a42f0651ca83c020edf4f200a8cb450">icu::SimpleTimeZone</a>, and <a class="el" href="classicu_1_1RuleBasedTimeZone.html#a5e0960fc91d387ade133cc79fca91202">icu::RuleBasedTimeZone</a>.</p>
</div>
</div>
<a id="af96a42842f1963c58a9b953010a7f295"></a>
<h2 class="memtitle"><span class="permalink"><a href="#af96a42842f1963c58a9b953010a7f295">◆ </a></span>countTransitionRules()</h2>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">virtual int32_t icu::BasicTimeZone::countTransitionRules </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> const</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">pure virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns the number of <code><a class="el" href="classicu_1_1TimeZoneRule.html" title="TimeZoneRule is a class representing a rule for time zone.">TimeZoneRule</a></code>s which represents time transitions, for this time zone, that is, all <code><a class="el" href="classicu_1_1TimeZoneRule.html" title="TimeZoneRule is a class representing a rule for time zone.">TimeZoneRule</a></code>s for this time zone except <code><a class="el" href="classicu_1_1InitialTimeZoneRule.html" title="InitialTimeZoneRule represents a time zone rule representing a time zone effective from the beginning...">InitialTimeZoneRule</a></code>. </p>
<p>The return value range is 0 or any positive value. </p><dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">status</td><td>Receives error status code. </td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>The number of <code><a class="el" href="classicu_1_1TimeZoneRule.html" title="TimeZoneRule is a class representing a rule for time zone.">TimeZoneRule</a></code>s representing time transitions. </dd></dl>
<dl class="stable"><dt><b><a class="el" href="stable.html#_stable003712">Stable:</a></b></dt><dd>ICU 3.8 </dd></dl>
<p>Implemented in <a class="el" href="classicu_1_1VTimeZone.html#a128ab87bed99ca71e0f2f3a955677066">icu::VTimeZone</a>, <a class="el" href="classicu_1_1SimpleTimeZone.html#a3c082ef5338854155e469682b1174fee">icu::SimpleTimeZone</a>, and <a class="el" href="classicu_1_1RuleBasedTimeZone.html#a065aa6b14b6b1f998792e1e6a7e43931">icu::RuleBasedTimeZone</a>.</p>
</div>
</div>
<a id="ac398f0647dd9c3206d2eb6029fb5d7a9"></a>
<h2 class="memtitle"><span class="permalink"><a href="#ac398f0647dd9c3206d2eb6029fb5d7a9">◆ </a></span>getNextTransition()</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="umachine_8h.html#a349ef00011f20ccd1d3b424445681aa5">UBool</a> icu::BasicTimeZone::getNextTransition </td>
<td>(</td>
<td class="paramtype"><a class="el" href="utypes_8h.html#ace1704e9e77d407d1eaaa2e73ec0c039">UDate</a> </td>
<td class="paramname"><em>base</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="el" href="umachine_8h.html#a349ef00011f20ccd1d3b424445681aa5">UBool</a> </td>
<td class="paramname"><em>inclusive</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="el" href="classicu_1_1TimeZoneTransition.html">TimeZoneTransition</a> & </td>
<td class="paramname"><em>result</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td> const</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">pure virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Gets the first time zone transition after the base time. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">base</td><td>The base time. </td></tr>
<tr><td class="paramname">inclusive</td><td>Whether the base time is inclusive or not. </td></tr>
<tr><td class="paramname">result</td><td>Receives the first transition after the base time. </td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>true if the transition is found. </dd></dl>
<dl class="stable"><dt><b><a class="el" href="stable.html#_stable003709">Stable:</a></b></dt><dd>ICU 3.8 </dd></dl>
<p>Implemented in <a class="el" href="classicu_1_1VTimeZone.html#a2f31af4545f458eb59e1827ae9b0e8d7">icu::VTimeZone</a>, <a class="el" href="classicu_1_1SimpleTimeZone.html#a8856482c15b724015b3b16ee2860849b">icu::SimpleTimeZone</a>, and <a class="el" href="classicu_1_1RuleBasedTimeZone.html#a89bba41df427c438e63b10350a7d9a08">icu::RuleBasedTimeZone</a>.</p>
</div>
</div>
<a id="a65086b161e48bb92f382734e3610d854"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a65086b161e48bb92f382734e3610d854">◆ </a></span>getOffsetFromLocal() <span class="overload">[1/2]</span></h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void icu::BasicTimeZone::getOffsetFromLocal </td>
<td>(</td>
<td class="paramtype"><a class="el" href="utypes_8h.html#ace1704e9e77d407d1eaaa2e73ec0c039">UDate</a> </td>
<td class="paramname"><em>date</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int32_t </td>
<td class="paramname"><em>nonExistingTimeOpt</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int32_t </td>
<td class="paramname"><em>duplicatedTimeOpt</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int32_t & </td>
<td class="paramname"><em>rawOffset</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int32_t & </td>
<td class="paramname"><em>dstOffset</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>Get time zone offsets from local wall time. </p>
<dl class="internal"><dt><b><a class="el" href="internal.html#_internal000244">Internal:</a></b></dt><dd>Do not use. This API is for internal use only. </dd></dl>
</div>
</div>
<a id="a49fe120d78a17b93657fd3e97168ca30"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a49fe120d78a17b93657fd3e97168ca30">◆ </a></span>getOffsetFromLocal() <span class="overload">[2/2]</span></h2>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">virtual void icu::BasicTimeZone::getOffsetFromLocal </td>
<td>(</td>
<td class="paramtype"><a class="el" href="utypes_8h.html#ace1704e9e77d407d1eaaa2e73ec0c039">UDate</a> </td>
<td class="paramname"><em>date</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="el" href="ucal_8h.html#a15c4c761da085c0a7fcb7a02a68d6e58">UTimeZoneLocalOption</a> </td>
<td class="paramname"><em>nonExistingTimeOpt</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="el" href="ucal_8h.html#a15c4c761da085c0a7fcb7a02a68d6e58">UTimeZoneLocalOption</a> </td>
<td class="paramname"><em>duplicatedTimeOpt</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int32_t & </td>
<td class="paramname"><em>rawOffset</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int32_t & </td>
<td class="paramname"><em>dstOffset</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>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Get time zone offsets from local wall time. </p>
<dl class="stable"><dt><b><a class="el" href="stable.html#_stable003715">Stable:</a></b></dt><dd>ICU 69 </dd></dl>
<p>Reimplemented in <a class="el" href="classicu_1_1VTimeZone.html#a8bb4e8576631264217e83e92ed791093">icu::VTimeZone</a>, <a class="el" href="classicu_1_1SimpleTimeZone.html#a562e790cdb51d8e7026e4ed53c9d7bd2">icu::SimpleTimeZone</a>, and <a class="el" href="classicu_1_1RuleBasedTimeZone.html#a456e2c8b64d350f4e49aa94571580ccb">icu::RuleBasedTimeZone</a>.</p>
</div>
</div>
<a id="ae8b73123130deae483830b36f2da2c87"></a>
<h2 class="memtitle"><span class="permalink"><a href="#ae8b73123130deae483830b36f2da2c87">◆ </a></span>getPreviousTransition()</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="umachine_8h.html#a349ef00011f20ccd1d3b424445681aa5">UBool</a> icu::BasicTimeZone::getPreviousTransition </td>
<td>(</td>
<td class="paramtype"><a class="el" href="utypes_8h.html#ace1704e9e77d407d1eaaa2e73ec0c039">UDate</a> </td>
<td class="paramname"><em>base</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="el" href="umachine_8h.html#a349ef00011f20ccd1d3b424445681aa5">UBool</a> </td>
<td class="paramname"><em>inclusive</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="el" href="classicu_1_1TimeZoneTransition.html">TimeZoneTransition</a> & </td>
<td class="paramname"><em>result</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td> const</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">pure virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Gets the most recent time zone transition before the base time. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">base</td><td>The base time. </td></tr>
<tr><td class="paramname">inclusive</td><td>Whether the base time is inclusive or not. </td></tr>
<tr><td class="paramname">result</td><td>Receives the most recent transition before the base time. </td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>true if the transition is found. </dd></dl>
<dl class="stable"><dt><b><a class="el" href="stable.html#_stable003710">Stable:</a></b></dt><dd>ICU 3.8 </dd></dl>
<p>Implemented in <a class="el" href="classicu_1_1VTimeZone.html#af098eca470fcad686868ae472919076c">icu::VTimeZone</a>, <a class="el" href="classicu_1_1SimpleTimeZone.html#a6435e2a3cfe5e0194547ff6da18ef368">icu::SimpleTimeZone</a>, and <a class="el" href="classicu_1_1RuleBasedTimeZone.html#a168e9787e375e85e414301548d4805b1">icu::RuleBasedTimeZone</a>.</p>
</div>
</div>
<a id="ad843d9e77d3d6d6d825c559d548dcbed"></a>
<h2 class="memtitle"><span class="permalink"><a href="#ad843d9e77d3d6d6d825c559d548dcbed">◆ </a></span>getSimpleRulesNear()</h2>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">virtual void icu::BasicTimeZone::getSimpleRulesNear </td>
<td>(</td>
<td class="paramtype"><a class="el" href="utypes_8h.html#ace1704e9e77d407d1eaaa2e73ec0c039">UDate</a> </td>
<td class="paramname"><em>date</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="el" href="classicu_1_1InitialTimeZoneRule.html">InitialTimeZoneRule</a> *& </td>
<td class="paramname"><em>initial</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="el" href="classicu_1_1AnnualTimeZoneRule.html">AnnualTimeZoneRule</a> *& </td>
<td class="paramname"><em>std</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="el" href="classicu_1_1AnnualTimeZoneRule.html">AnnualTimeZoneRule</a> *& </td>
<td class="paramname"><em>dst</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>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Gets the set of time zone rules valid at the specified time. </p>
<p>Some known external time zone implementations are not capable to handle historic time zone rule changes. Also some implementations can only handle certain type of rule definitions. If this time zone does not use any daylight saving time within about 1 year from the specified time, only the <code>InitialTimeZone</code> is returned. Otherwise, the rule for standard time and daylight saving time transitions are returned in addition to the <code><a class="el" href="classicu_1_1InitialTimeZoneRule.html" title="InitialTimeZoneRule represents a time zone rule representing a time zone effective from the beginning...">InitialTimeZoneRule</a></code>. The standard and daylight saving time transition rules are represented by <code><a class="el" href="classicu_1_1AnnualTimeZoneRule.html" title="AnnualTimeZoneRule is a class used for representing a time zone rule which takes effect annually.">AnnualTimeZoneRule</a></code> with <code><a class="el" href="classicu_1_1DateTimeRule.html#a4a365842d3fd933ce09de5e648220cc3a134e0c54be0b33a5207a76e635bf338e" title="The Nth occurrence of the day of week, for example, 2nd Sunday in March.">DateTimeRule::DOW</a></code> for its date rule and <code><a class="el" href="classicu_1_1DateTimeRule.html#ab59dacda2669ddd8bbb276867daad27cae6945d7b414b56cf4bc00dc690a6bc47" title="The local wall clock time.">DateTimeRule::WALL_TIME</a></code> for its time rule. Because daylight saving time rule is changing time to time in many time zones and also mapping a transition time rule to different type is lossy transformation, the set of rules returned by this method may be valid for short period of time. The time zone rule objects returned by this method is owned by the caller, so the caller is responsible for deleting them after use. </p><dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">date</td><td>The date used for extracting time zone rules. </td></tr>
<tr><td class="paramname">initial</td><td>Receives the <code>InitialTimeZone</code>, always not nullptr. </td></tr>
<tr><td class="paramname">std</td><td>Receives the <code><a class="el" href="classicu_1_1AnnualTimeZoneRule.html" title="AnnualTimeZoneRule is a class used for representing a time zone rule which takes effect annually.">AnnualTimeZoneRule</a></code> for standard time transitions. When this time time zone does not observe daylight saving times around the specified date, nullptr is set. </td></tr>
<tr><td class="paramname">dst</td><td>Receives the <code><a class="el" href="classicu_1_1AnnualTimeZoneRule.html" title="AnnualTimeZoneRule is a class used for representing a time zone rule which takes effect annually.">AnnualTimeZoneRule</a></code> for daylight saving time transitions. When this time zone does not observer daylight saving times around the specified date, nullptr is set. </td></tr>
<tr><td class="paramname">status</td><td>Receives error status code. </td></tr>
</table>
</dd>
</dl>
<dl class="stable"><dt><b><a class="el" href="stable.html#_stable003714">Stable:</a></b></dt><dd>ICU 3.8 </dd></dl>
</div>
</div>
<a id="aa3b25fc7ca494eca418d1a629f896a5b"></a>
<h2 class="memtitle"><span class="permalink"><a href="#aa3b25fc7ca494eca418d1a629f896a5b">◆ </a></span>getTimeZoneRules()</h2>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">virtual void icu::BasicTimeZone::getTimeZoneRules </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classicu_1_1InitialTimeZoneRule.html">InitialTimeZoneRule</a> *& </td>
<td class="paramname"><em>initial</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const <a class="el" href="classicu_1_1TimeZoneRule.html">TimeZoneRule</a> * </td>
<td class="paramname"><em>trsrules</em>[], </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int32_t & </td>
<td class="paramname"><em>trscount</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>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">pure virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Gets the <code><a class="el" href="classicu_1_1InitialTimeZoneRule.html" title="InitialTimeZoneRule represents a time zone rule representing a time zone effective from the beginning...">InitialTimeZoneRule</a></code> and the set of <code><a class="el" href="classicu_1_1TimeZoneRule.html" title="TimeZoneRule is a class representing a rule for time zone.">TimeZoneRule</a></code> which represent time transitions for this time zone. </p>
<p>On successful return, the argument initial points to non-nullptr <code><a class="el" href="classicu_1_1InitialTimeZoneRule.html" title="InitialTimeZoneRule represents a time zone rule representing a time zone effective from the beginning...">InitialTimeZoneRule</a></code> and the array trsrules is filled with 0 or multiple <code><a class="el" href="classicu_1_1TimeZoneRule.html" title="TimeZoneRule is a class representing a rule for time zone.">TimeZoneRule</a></code> instances up to the size specified by trscount. The results are referencing the rule instance held by this time zone instance. Therefore, after this time zone is destructed, they are no longer available. </p><dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">initial</td><td>Receives the initial timezone rule </td></tr>
<tr><td class="paramname">trsrules</td><td>Receives the timezone transition rules </td></tr>
<tr><td class="paramname">trscount</td><td>On input, specify the size of the array 'transitions' receiving the timezone transition rules. On output, actual number of rules filled in the array will be set. </td></tr>
<tr><td class="paramname">status</td><td>Receives error status code. </td></tr>
</table>
</dd>
</dl>
<dl class="stable"><dt><b><a class="el" href="stable.html#_stable003713">Stable:</a></b></dt><dd>ICU 3.8 </dd></dl>
<p>Implemented in <a class="el" href="classicu_1_1VTimeZone.html#aff51c574c89f1aa1296f648f50f6283e">icu::VTimeZone</a>, <a class="el" href="classicu_1_1SimpleTimeZone.html#a5ec0a3d94a06e9142cedb66ba408f5e0">icu::SimpleTimeZone</a>, and <a class="el" href="classicu_1_1RuleBasedTimeZone.html#a684efeea19f5d5112e9e44c4203d3bc3">icu::RuleBasedTimeZone</a>.</p>
</div>
</div>
<a id="a50804b14ee33d52717f999681510b8ca"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a50804b14ee33d52717f999681510b8ca">◆ </a></span>getTimeZoneRulesAfter()</h2>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">void icu::BasicTimeZone::getTimeZoneRulesAfter </td>
<td>(</td>
<td class="paramtype"><a class="el" href="utypes_8h.html#ace1704e9e77d407d1eaaa2e73ec0c039">UDate</a> </td>
<td class="paramname"><em>start</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="el" href="classicu_1_1InitialTimeZoneRule.html">InitialTimeZoneRule</a> *& </td>
<td class="paramname"><em>initial</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">UVector *& </td>
<td class="paramname"><em>transitionRules</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>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">protected</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Gets the set of <a class="el" href="classicu_1_1TimeZoneRule.html" title="TimeZoneRule is a class representing a rule for time zone.">TimeZoneRule</a> instances applicable to the specified time and after. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">start</td><td>The start date used for extracting time zone rules </td></tr>
<tr><td class="paramname">initial</td><td>Output parameter, receives the InitialTimeZone. Always not nullptr (except in case of error) </td></tr>
<tr><td class="paramname">transitionRules</td><td>Output parameter, a UVector of transition rules. May be nullptr, if there are no transition rules. The caller owns the returned vector; the UVector owns the rules. </td></tr>
<tr><td class="paramname">status</td><td>Receives error status code </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a id="af09ac7633f0dce8ef95e6126f88e475f"></a>
<h2 class="memtitle"><span class="permalink"><a href="#af09ac7633f0dce8ef95e6126f88e475f">◆ </a></span>hasEquivalentTransitions()</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="umachine_8h.html#a349ef00011f20ccd1d3b424445681aa5">UBool</a> icu::BasicTimeZone::hasEquivalentTransitions </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classicu_1_1BasicTimeZone.html">BasicTimeZone</a> & </td>