|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.joda.time.DateTimeZone org.joda.time.tz.FixedDateTimeZone
public final class FixedDateTimeZone
Basic DateTimeZone implementation that has a fixed name key and offsets.
FixedDateTimeZone is thread-safe and immutable.
Field Summary |
---|
Fields inherited from class org.joda.time.DateTimeZone |
---|
UTC |
Constructor Summary | |
---|---|
FixedDateTimeZone(String id,
String nameKey,
int wallOffset,
int standardOffset)
|
Method Summary | |
---|---|
boolean |
equals(Object obj)
Compare this datetime zone with another. |
String |
getNameKey(long instant)
Returns a non-localized name that is unique to this time zone. |
int |
getOffset(long instant)
Gets the millisecond offset to add to UTC to get local time. |
int |
getOffsetFromLocal(long instantLocal)
Gets the millisecond offset to subtract from local time to get UTC time. |
int |
getStandardOffset(long instant)
Gets the standard millisecond offset to add to UTC to get local time, when standard time is in effect. |
int |
hashCode()
Gets a hash code compatable with equals. |
boolean |
isFixed()
Returns true if this time zone has no transitions. |
long |
nextTransition(long instant)
Advances the given instant to where the time zone offset or name changes. |
long |
previousTransition(long instant)
Retreats the given instant to where the time zone offset or name changes. |
TimeZone |
toTimeZone()
Override to return the correct timzone instance. |
Methods inherited from class org.joda.time.DateTimeZone |
---|
adjustOffset, convertLocalToUTC, convertLocalToUTC, convertUTCToLocal, forID, forOffsetHours, forOffsetHoursMinutes, forOffsetMillis, forTimeZone, getAvailableIDs, getDefault, getID, getMillisKeepLocal, getName, getName, getNameProvider, getOffset, getProvider, getShortName, getShortName, isLocalDateTimeGap, isStandardOffset, setDefault, setNameProvider, setProvider, toString, writeReplace |
Methods inherited from class java.lang.Object |
---|
clone, finalize, getClass, notify, notifyAll, wait, wait, wait |
Constructor Detail |
---|
public FixedDateTimeZone(String id, String nameKey, int wallOffset, int standardOffset)
Method Detail |
---|
public String getNameKey(long instant)
DateTimeZone
getNameKey
in class DateTimeZone
instant
- milliseconds from 1970-01-01T00:00:00Z to get the name for
public int getOffset(long instant)
DateTimeZone
getOffset
in class DateTimeZone
instant
- milliseconds from 1970-01-01T00:00:00Z to get the offset for
public int getStandardOffset(long instant)
DateTimeZone
getStandardOffset
in class DateTimeZone
instant
- milliseconds from 1970-01-01T00:00:00Z to get the offset for
public int getOffsetFromLocal(long instantLocal)
DateTimeZone
millisLocal == millisUTC + getOffset(millisUTC) millisUTC == millisLocal - getOffsetFromLocal(millisLocal)NOTE: After calculating millisLocal, some error may be introduced. At offset transitions (due to DST or other historical changes), ranges of local times may map to different UTC times.
This method will return an offset suitable for calculating an instant
after any DST gap. For example, consider a zone with a cutover
from 01:00 to 01:59:
Input: 00:00 Output: 00:00
Input: 00:30 Output: 00:30
Input: 01:00 Output: 02:00
Input: 01:30 Output: 02:30
Input: 02:00 Output: 02:00
Input: 02:30 Output: 02:30
During a DST overlap (where the local time is ambiguous) this method will return the earlier instant. The combination of these two rules is to always favour daylight (summer) time over standard (winter) time.
NOTE: Prior to v2.0, the DST overlap behaviour was not defined and varied by hemisphere. Prior to v1.5, the DST gap behaviour was also not defined.
getOffsetFromLocal
in class DateTimeZone
instantLocal
- the millisecond instant, relative to this time zone, to get the offset for
public boolean isFixed()
DateTimeZone
isFixed
in class DateTimeZone
public long nextTransition(long instant)
DateTimeZone
nextTransition
in class DateTimeZone
instant
- milliseconds from 1970-01-01T00:00:00Z
public long previousTransition(long instant)
DateTimeZone
previousTransition
in class DateTimeZone
instant
- milliseconds from 1970-01-01T00:00:00Z
public TimeZone toTimeZone()
toTimeZone
in class DateTimeZone
public boolean equals(Object obj)
DateTimeZone
equals
in class DateTimeZone
obj
- the object to compare with
public int hashCode()
DateTimeZone
hashCode
in class DateTimeZone
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |