it.cnr.iit.jscontact.tools.dto.TimeZoneRule Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jscontact-tools Show documentation
Show all versions of jscontact-tools Show documentation
Java tools for JSContact building, validation, serialization/deserialization and conversion from vCard 4.0 (RFC6350) and its transliterations, namely xCard (RFC6351) and jCard (RFC7095).
package it.cnr.iit.jscontact.tools.dto;
import lombok.*;
import java.util.Calendar;
/**
* Class mapping the TimeZoneRule type as defined in section 4.7.2 of [RFC8984].
*
* @see RFC8984
* @author Mario Loffredo
*/
@Builder
@Data
@AllArgsConstructor
@NoArgsConstructor
public class TimeZoneRule {
Calendar start;
String offsetFrom;
String offsetTo;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy