public class TimeZoneTransition
extends java.lang.Object
TimeZoneTransition
is a class representing a time zone transition.
An instance has a time of transition and rules for both before and
after the transition.Constructor and Description |
---|
TimeZoneTransition(long time,
TimeZoneRule from,
TimeZoneRule to)
Constructs a
TimeZoneTransition with the time and the rules before/after
the transition. |
Modifier and Type | Method and Description |
---|---|
TimeZoneRule |
getFrom()
Returns the rule used before the transition.
|
long |
getTime()
Returns the time of transition in milliseconds since the base time.
|
TimeZoneRule |
getTo()
Returns the rule used after the transition.
|
java.lang.String |
toString()
Returns a
String representation of this TimeZoneTransition object. |
public TimeZoneTransition(long time, TimeZoneRule from, TimeZoneRule to)
TimeZoneTransition
with the time and the rules before/after
the transition.time
- The time of transition in milliseconds since the base time.from
- The time zone rule used before the transition.to
- The time zone rule used after the transition.public long getTime()
public TimeZoneRule getTo()
public TimeZoneRule getFrom()
public java.lang.String toString()
String
representation of this TimeZoneTransition
object.
This method is used for debugging purpose only. The string representation can be changed
in future version of ICU without any notice.toString
in class java.lang.Object
Copyright © 2016 Unicode, Inc. and others.