![JAR search and dependency download from the Maven repository](/logo.png)
it.cnr.iit.jscontact.tools.dto.AnniversaryKind 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).
/*
* Copyright (C) 2020 Consiglio Nazionale delle Ricerche
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see .
*/
package it.cnr.iit.jscontact.tools.dto;
import com.fasterxml.jackson.annotation.JsonIgnore;
import lombok.Getter;
import lombok.NoArgsConstructor;
import lombok.Setter;
import lombok.ToString;
import lombok.experimental.SuperBuilder;
import java.io.Serializable;
/**
* Class mapping the values of the "kind" property of the Anniversary type as defined in section 2.8.1 of [RFC9553].
*
* @see Section 2.8.1 of RFC9553
* @author Mario Loffredo
*/
@Getter
@Setter
@ToString(callSuper = true)
@NoArgsConstructor
@SuperBuilder
public class AnniversaryKind extends ExtensibleEnumType implements Serializable {
/**
* Tests if this anniverary type is "birth".
*
* @return true if this anniverary type is "birth", false otherwise
*/
@JsonIgnore
public boolean isBirth() { return isRfc(AnniversaryEnum.BIRTH); }
/**
* Tests if this anniverary type is "death".
*
* @return true if this anniverary type is "death", false otherwise
*/
@JsonIgnore
public boolean isDeath() { return isRfc(AnniversaryEnum.DEATH); }
/**
* Tests if this anniverary type is "wedding".
*
* @return true if this anniverary type is "wedding", false otherwise
*/
@JsonIgnore
public boolean isWedding() { return isRfc(AnniversaryEnum.WEDDING); }
private static AnniversaryKind rfc(AnniversaryEnum rfcValue) { return AnniversaryKind.builder().rfcValue(rfcValue).build(); }
/**
* Returns a "birth" anniversary type.
*
* @return a "birth" anniversary type
*/
public static AnniversaryKind birth() { return rfc(AnniversaryEnum.BIRTH);}
/**
* Returns a "death" anniversary type.
*
* @return a "death" anniversary type
*/
public static AnniversaryKind death() { return rfc(AnniversaryEnum.DEATH);}
/**
* Returns a "wedding" anniversary type.
*
* @return a "wedding" anniversary type
*/
public static AnniversaryKind wedding() { return rfc(AnniversaryEnum.WEDDING);}
/**
* Returns a custom anniverary type.
*
* @return a custom anniverary type
*/
private static AnniversaryKind ext(String extValue) { return AnniversaryKind.builder().extValue(V_Extension.toV_Extension(extValue)).build(); }
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy