All Downloads are FREE. Search and download functionalities are using the official Maven repository.

fr.insee.eno.parameters.AccompanyingMail Maven / Gradle / Ivy

Go to download

Eno is a tool that generates survey questionnaires starting from their formal description in DDI

The newest version!
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.2 
// See https://javaee.github.io/jaxb-v2/ 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2024.10.10 at 12:34:23 PM UTC 
//


package fr.insee.eno.parameters;

import javax.xml.bind.annotation.XmlEnum;
import javax.xml.bind.annotation.XmlEnumValue;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for AccompanyingMail. * *

The following schema fragment specifies the expected content contained within this class. *

*

 * <simpleType name="AccompanyingMail">
 *   <restriction base="{http://www.w3.org/2001/XMLSchema}token">
 *     <enumeration value=""/>
 *     <enumeration value="cnrCOL"/>
 *     <enumeration value="entreeCOL"/>
 *     <enumeration value="medCOL"/>
 *     <enumeration value="ouvertureCOL"/>
 *     <enumeration value="relanceCOL"/>
 *     <enumeration value="relanceCOLEM"/>
 *     <enumeration value="accompagnementCOL"/>
 *   </restriction>
 * </simpleType>
 * 
* */ @XmlType(name = "AccompanyingMail") @XmlEnum public enum AccompanyingMail { @XmlEnumValue("") NONE(""), @XmlEnumValue("cnrCOL") CNR_COL("cnrCOL"), @XmlEnumValue("entreeCOL") ENTREE_COL("entreeCOL"), @XmlEnumValue("medCOL") MED_COL("medCOL"), @XmlEnumValue("ouvertureCOL") OUVERTURE_COL("ouvertureCOL"), @XmlEnumValue("relanceCOL") RELANCE_COL("relanceCOL"), @XmlEnumValue("relanceCOLEM") RELANCE_COLEM("relanceCOLEM"), @XmlEnumValue("accompagnementCOL") ACCOMPAGNEMENT_COL("accompagnementCOL"); private final String value; AccompanyingMail(String v) { value = v; } public String value() { return value; } public static AccompanyingMail fromValue(String v) { for (AccompanyingMail c: AccompanyingMail.values()) { if (c.value.equals(v)) { return c; } } throw new IllegalArgumentException(v); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy