mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-26 14:24:46 +02:00
8339637: (tz) Update Timezone Data to 2024b
Reviewed-by: naoto, coffeys, jlu
This commit is contained in:
parent
e7cf25ce0e
commit
ebc17c7c8d
23 changed files with 1258 additions and 963 deletions
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright (c) 2012, 2022, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 2012, 2024, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
|
@ -186,15 +186,12 @@ public abstract sealed class ZoneId implements Serializable permits ZoneOffset,
|
|||
* This map allows the IDs to continue to be used via the
|
||||
* {@link #of(String, Map)} factory method.
|
||||
* <p>
|
||||
* This map contains a mapping of the IDs that is in line with TZDB 2005r and
|
||||
* This map contains a mapping of the IDs that is in line with TZDB 2024b and
|
||||
* later, where 'EST', 'MST' and 'HST' map to IDs which do not include daylight
|
||||
* savings.
|
||||
* savings since 1970. This mapping may change in update releases in support of new versions of TZDB.
|
||||
* <p>
|
||||
* This maps as follows:
|
||||
* <ul>
|
||||
* <li>EST - -05:00</li>
|
||||
* <li>HST - -10:00</li>
|
||||
* <li>MST - -07:00</li>
|
||||
* <li>ACT - Australia/Darwin</li>
|
||||
* <li>AET - Australia/Sydney</li>
|
||||
* <li>AGT - America/Argentina/Buenos_Aires</li>
|
||||
|
@ -208,10 +205,13 @@ public abstract sealed class ZoneId implements Serializable permits ZoneOffset,
|
|||
* <li>CTT - Asia/Shanghai</li>
|
||||
* <li>EAT - Africa/Addis_Ababa</li>
|
||||
* <li>ECT - Europe/Paris</li>
|
||||
* <li>EST - America/Panama</li>
|
||||
* <li>HST - Pacific/Honolulu</li>
|
||||
* <li>IET - America/Indiana/Indianapolis</li>
|
||||
* <li>IST - Asia/Kolkata</li>
|
||||
* <li>JST - Asia/Tokyo</li>
|
||||
* <li>MIT - Pacific/Apia</li>
|
||||
* <li>MST - America/Phoenix</li>
|
||||
* <li>NET - Asia/Yerevan</li>
|
||||
* <li>NST - Pacific/Auckland</li>
|
||||
* <li>PLT - Asia/Karachi</li>
|
||||
|
@ -249,9 +249,9 @@ public abstract sealed class ZoneId implements Serializable permits ZoneOffset,
|
|||
entry("PST", "America/Los_Angeles"),
|
||||
entry("SST", "Pacific/Guadalcanal"),
|
||||
entry("VST", "Asia/Ho_Chi_Minh"),
|
||||
entry("EST", "-05:00"),
|
||||
entry("MST", "-07:00"),
|
||||
entry("HST", "-10:00")
|
||||
entry("EST", "America/Panama"),
|
||||
entry("MST", "America/Phoenix"),
|
||||
entry("HST", "Pacific/Honolulu")
|
||||
);
|
||||
/**
|
||||
* Serialization version.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue