TimeZoneTransition.withTimeZoneTransitionGroup constructor

TimeZoneTransition.withTimeZoneTransitionGroup(
  1. TimeZoneDefinition timeZoneDefinition,
  2. TimeZoneTransitionGroup targetGroup
)
Initializes a new instance of the The time zone definition the transition will belong to. The transition group the transition will target.

Implementation

TimeZoneTransition.withTimeZoneTransitionGroup(
    TimeZoneDefinition timeZoneDefinition,
    TimeZoneTransitionGroup targetGroup) {
  this.timeZoneDefinition = timeZoneDefinition;
  this.targetGroup = targetGroup;
}