Java TimeZone Get getTimeZoneIDs()

Here you can find the source of getTimeZoneIDs()

Description

get Time Zone I Ds

License

Apache License

Declaration

public static Map<String, String[]> getTimeZoneIDs() 

Method Source Code

//package com.java2s;
/*/*  w w  w. j  av  a2  s.  co m*/
 * Copyright 2007-2107 the original author or authors.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

import java.util.*;

public class Main {
    private static Map<String, String[]> __timeZoneIDs = new LinkedHashMap<String, String[]>(32);

    public static Map<String, String[]> getTimeZoneIDs() {
        return __timeZoneIDs;
    }
}

Related

  1. getTimeZone(Calendar cal)
  2. getTimeZone(final String ID)
  3. getTimeZoneByOffSet(String offSetInString)
  4. getTimezoneDifference(String timezone1, String timezone2)
  5. getTimeZoneID()
  6. getTimeZoneOffset()
  7. getTimeZoneOffset(long t)
  8. getTimezones()
  9. getTimezoneTime(long time, int timezone)