it.cnr.iit.jscontact.tools.dto.VCardPropEnum Maven / Gradle / Ivy
/*
* 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 it.cnr.iit.jscontact.tools.dto.utils.EnumUtils;
import lombok.AllArgsConstructor;
/**
* Enum class mapping some VCard properties as defined in section 6 of [RFC6350] and section 3 of [RFC9554] .
*
* @author Mario Loffredo
* @see Section 6 of RFC6350
* @see Section 3 of RFC9554
*/
@AllArgsConstructor
public enum VCardPropEnum {
VERSION("VERSION"),
FN("FN"),
TZ("TZ"),
GEO("GEO"),
XML("XML"),
SOCIALPROFILE("SOCIALPROFILE"),
PRONOUNS("PRONOUNS"),
CONTACT_URI("CONTACT-URI"),
LANGUAGE("LANGUAGE"),
CLIENTPIDMAP("CLIENTPIDMAP"),
IMPP("IMPP"),
CREATED("CREATED"),
GENDER("GENDER"),
GRAMGENDER("GRAMGENDER"),
JSPROP("JSPROP"),
X_ABLABEL("X-ABLabel");
private final String value;
public String getValue() {
return value;
}
public static VCardPropEnum getEnum(String value) throws IllegalArgumentException {
return (value == null) ? null : EnumUtils.getEnum(VCardPropEnum.class, value);
}
@Override
public String toString() {
return value;
}
}