public final class FixedDateTimeZone extends DateTimeZone
FixedDateTimeZone is thread-safe and immutable.
UTC| Constructor and Description |
|---|
FixedDateTimeZone(String id,
String nameKey,
int wallOffset,
int standardOffset) |
| Modifier and Type | Method and Description |
|---|---|
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.
|
convertLocalToUTC, convertUTCToLocal, forID, forOffsetHours, forOffsetHoursMinutes, forOffsetMillis, forTimeZone, getAvailableIDs, getDefault, getID, getMillisKeepLocal, getName, getName, getNameProvider, getOffset, getProvider, getShortName, getShortName, isLocalDateTimeGap, isStandardOffset, setDefault, setNameProvider, setProvider, toString, writeReplacepublic String getNameKey(long instant)
DateTimeZonegetNameKey in class DateTimeZoneinstant - milliseconds from 1970-01-01T00:00:00Z to get the name forpublic int getOffset(long instant)
DateTimeZonegetOffset in class DateTimeZoneinstant - milliseconds from 1970-01-01T00:00:00Z to get the offset forpublic int getStandardOffset(long instant)
DateTimeZonegetStandardOffset in class DateTimeZoneinstant - milliseconds from 1970-01-01T00:00:00Z to get the offset forpublic int getOffsetFromLocal(long instantLocal)
DateTimeZonemillisLocal == 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
NOTE: The behaviour of this method changed in v1.5, with the emphasis on returning a consistent result later along the time-line (shown above).
getOffsetFromLocal in class DateTimeZoneinstantLocal - the millisecond instant, relative to this time zone, to
get the offset forpublic boolean isFixed()
DateTimeZoneisFixed in class DateTimeZonepublic long nextTransition(long instant)
DateTimeZonenextTransition in class DateTimeZoneinstant - milliseconds from 1970-01-01T00:00:00Zpublic long previousTransition(long instant)
DateTimeZonepreviousTransition in class DateTimeZoneinstant - milliseconds from 1970-01-01T00:00:00Zpublic TimeZone toTimeZone()
toTimeZone in class DateTimeZonepublic boolean equals(Object obj)
DateTimeZoneequals in class DateTimeZoneobj - the object to compare withpublic int hashCode()
DateTimeZonehashCode in class DateTimeZoneCopyright © 2012 JBoss by Red Hat. All Rights Reserved.