Java TimeZone Get getJapanTimeZone()

Here you can find the source of getJapanTimeZone()

Description

get Japan Time Zone

License

Open Source License

Declaration

public static TimeZone getJapanTimeZone() 

Method Source Code


//package com.java2s;

import java.util.*;

public class Main {
    public static final String TIME_ZONE_JAPAN = "Asia/Tokyo";

    public static TimeZone getJapanTimeZone() {
        return TimeZone.getTimeZone(TIME_ZONE_JAPAN);
    }//from  w w w.j  a  va2  s  .c  o  m
}

Related

  1. getDSTTime(TimeZone tz, Date date)
  2. getEnd(String date, TimeZone tz)
  3. getFilteredTimeZoneMap()
  4. getHostDefaultValues()
  5. getHourPart(TimeZone timeZone)
  6. getMediumDisplayDate(Date moment, TimeZone tz, Locale inLocale)
  7. getMicrosoftTimeZoneName(TimeZone timeZone)
  8. getMilitaryTimeZoneCharacter(TimeZone tz)
  9. getMillis(TimeZone tz, int year, int month, int day, int hour, int minute, int second, int millis)