Class TimeZone

  • All Implemented Interfaces:
    Serializable, Cloneable

    public class TimeZone
    extends TimeZone
    $Id$

    Created on 13/09/2005

    A Java timezone implementation based on an underlying VTimeZone definition.

    See Also:
    Serialized Form
    • Constructor Detail

      • TimeZone

        public TimeZone​(VTimeZone vTimeZone)
        Constructs a new instance based on the specified VTimeZone.
        Parameters:
        vTimeZone - a VTIMEZONE object instance
    • Method Detail

      • getOffset

        public final int getOffset​(int era,
                                   int year,
                                   int month,
                                   int dayOfMonth,
                                   int dayOfWeek,
                                   int milliseconds)
        Specified by:
        getOffset in class TimeZone
      • getOffset

        public int getOffset​(long date)
        Overrides:
        getOffset in class TimeZone
      • inDaylightTime

        public final boolean inDaylightTime​(Date date)
        Determines if the specified date is in daylight time according to this timezone. This is done by finding the latest supporting observance for the specified date and identifying whether it is daylight time.
        Specified by:
        inDaylightTime in class TimeZone
        Parameters:
        date - a date instance
        Returns:
        true if the specified date is in daylight time, otherwise false
      • setRawOffset

        public final void setRawOffset​(int offsetMillis)
        Specified by:
        setRawOffset in class TimeZone
      • getVTimeZone

        public final VTimeZone getVTimeZone()
        Returns:
        Returns the VTimeZone backing this instance.
      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class Object