Lines Matching refs:map

175      * A map of zone overrides to enable the short time-zone names to be used.
178 * This map allows the IDs to continue to be used via the
181 * This map contains a mapping of the IDs that is in line with TZDB 2005r and
182 * later, where 'EST', 'MST' and 'HST' map to IDs which do not include daylight
216 * The map is unmodifiable.
220 Map<String, String> map = new HashMap<>(64);
221 map.put("ACT", "Australia/Darwin");
222 map.put("AET", "Australia/Sydney");
223 map.put("AGT", "America/Argentina/Buenos_Aires");
224 map.put("ART", "Africa/Cairo");
225 map.put("AST", "America/Anchorage");
226 map.put("BET", "America/Sao_Paulo");
227 map.put("BST", "Asia/Dhaka");
228 map.put("CAT", "Africa/Harare");
229 map.put("CNT", "America/St_Johns");
230 map.put("CST", "America/Chicago");
231 map.put("CTT", "Asia/Shanghai");
232 map.put("EAT", "Africa/Addis_Ababa");
233 map.put("ECT", "Europe/Paris");
234 map.put("IET", "America/Indiana/Indianapolis");
235 map.put("IST", "Asia/Kolkata");
236 map.put("JST", "Asia/Tokyo");
237 map.put("MIT", "Pacific/Apia");
238 map.put("NET", "Asia/Yerevan");
239 map.put("NST", "Pacific/Auckland");
240 map.put("PLT", "Asia/Karachi");
241 map.put("PNT", "America/Phoenix");
242 map.put("PRT", "America/Puerto_Rico");
243 map.put("PST", "America/Los_Angeles");
244 map.put("SST", "Pacific/Guadalcanal");
245 map.put("VST", "Asia/Ho_Chi_Minh");
246 map.put("EST", "-05:00");
247 map.put("MST", "-07:00");
248 map.put("HST", "-10:00");
249 SHORT_IDS = Collections.unmodifiableMap(map);
290 * Obtains an instance of {@code ZoneId} using its ID using a map
296 * This method allows a map of string to time-zone to be setup and reused
300 * @param aliasMap a map of alias zone IDs (typically abbreviations) to real zone IDs, not null