< prev index next >

src/java.base/share/classes/sun/util/locale/provider/LocaleDataMetaInfo.java

Print this page
rev 49575 : imported patch 8181157

@@ -48,13 +48,14 @@
      * @return concatenated language tags, separated by a space.
      */
     public String availableLanguageTags(String category);
 
     /**
-     * Returns a map for short time zone ids in BCP47 Unicode extension and
-     * the long time zone ids.
-     * @return map of short id to long ids, separated by a space.
+     * Returns a map for time zone ids to their canonical ids.
+     * The map key is either an LDML's short id, or a valid
+     * TZDB zone id.
+     * @return map of ids to their canonical ids.
      */
-    default public Map<String, String>  tzShortIDs() {
+    default public Map<String, String>  tzCanonicalIDs() {
         return null;
     }
 }
< prev index next >