Uses of Class
com.ibm.icu.util.TimeZoneRule
-
Packages that use TimeZoneRule Package Description com.ibm.icu.impl com.ibm.icu.util International calendars and other utility classes. -
-
Uses of TimeZoneRule in com.ibm.icu.impl
Methods in com.ibm.icu.impl that return TimeZoneRule Modifier and Type Method Description TimeZoneRule[]
OlsonTimeZone. getTimeZoneRules()
-
Uses of TimeZoneRule in com.ibm.icu.util
Subclasses of TimeZoneRule in com.ibm.icu.util Modifier and Type Class Description class
AnnualTimeZoneRule
AnnualTimeZoneRule
is a class used for representing a time zone rule which takes effect annually.class
InitialTimeZoneRule
InitialTimeZoneRule
represents a time zone rule representing a time zone effective from the beginning and has no actual start times.class
TimeArrayTimeZoneRule
TimeArrayTimeZoneRule
represents a time zone rule whose start times are defined by an array of milliseconds since the standard base time.Fields in com.ibm.icu.util declared as TimeZoneRule Modifier and Type Field Description private TimeZoneRule
TimeZoneTransition. from
private TimeZoneRule
TimeZoneTransition. to
Fields in com.ibm.icu.util with type parameters of type TimeZoneRule Modifier and Type Field Description private java.util.List<TimeZoneRule>
RuleBasedTimeZone. historicRules
Methods in com.ibm.icu.util that return TimeZoneRule Modifier and Type Method Description private static TimeZoneRule
VTimeZone. createRuleByRDATE(java.lang.String tzname, int rawOffset, int dstSavings, long start, java.util.List<java.lang.String> dates, int fromOffset)
private static TimeZoneRule
VTimeZone. createRuleByRRULE(java.lang.String tzname, int rawOffset, int dstSavings, long start, java.util.List<java.lang.String> dates, int fromOffset)
private TimeZoneRule
RuleBasedTimeZone. findRuleInFinal(long time, boolean local, int NonExistingTimeOpt, int DuplicatedTimeOpt)
TimeZoneRule
TimeZoneTransition. getFrom()
Returns the rule used before the transition.TimeZoneRule[]
BasicTimeZone. getSimpleTimeZoneRulesNear(long date)
Returns the array ofTimeZoneRule
which represents the rule of this time zone object near the specified date.abstract TimeZoneRule[]
BasicTimeZone. getTimeZoneRules()
Returns the array ofTimeZoneRule
which represents the rule of this time zone object.TimeZoneRule[]
BasicTimeZone. getTimeZoneRules(long start)
Returns the array ofTimeZoneRule
which represents the rule of this time zone object since the specified start time.TimeZoneRule[]
RuleBasedTimeZone. getTimeZoneRules()
Returns the array ofTimeZoneRule
which represents the rule of this time zone object.TimeZoneRule[]
SimpleTimeZone. getTimeZoneRules()
Returns the array ofTimeZoneRule
which represents the rule of this time zone object.TimeZoneRule[]
VTimeZone. getTimeZoneRules()
Returns the array ofTimeZoneRule
which represents the rule of this time zone object.TimeZoneRule[]
VTimeZone. getTimeZoneRules(long start)
Returns the array ofTimeZoneRule
which represents the rule of this time zone object since the specified start time.TimeZoneRule
TimeZoneTransition. getTo()
Returns the rule used after the transition.Methods in com.ibm.icu.util with parameters of type TimeZoneRule Modifier and Type Method Description void
RuleBasedTimeZone. addTransitionRule(TimeZoneRule rule)
Adds theTimeZoneRule
which represents time transitions.boolean
AnnualTimeZoneRule. isEquivalentTo(TimeZoneRule other)
Returns if this rule represents the same rule and offsets as another.boolean
InitialTimeZoneRule. isEquivalentTo(TimeZoneRule other)
Returns if this rule represents the same rule and offsets as another.boolean
TimeArrayTimeZoneRule. isEquivalentTo(TimeZoneRule other)
Returns if this rule represents the same rule and offsets as another.boolean
TimeZoneRule. isEquivalentTo(TimeZoneRule other)
Returns if this rule represents the same rule and offsets as another.Constructors in com.ibm.icu.util with parameters of type TimeZoneRule Constructor Description TimeZoneTransition(long time, TimeZoneRule from, TimeZoneRule to)
Constructs aTimeZoneTransition
with the time and the rules before/after the transition.
-