![JAR search and dependency download from the Maven repository](/logo.png)
it.cnr.iit.jscontact.tools.dto.TimeZone 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;
import java.util.List;
/**
* Class mapping the TimeZone type as defined in section 4.7.2 of [RFC8984].
*
* @see Section 4.7.2 of RFC8984
* @author Mario Loffredo
*/
@Builder
@Data
@AllArgsConstructor
@NoArgsConstructor
public class TimeZone {
String tzId;
Calendar updated;
@Singular(value = "standardItem", ignoreNullCollections = true)
List standard;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy