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

fr.insee.eno.parameters.PreProcessing 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 PreProcessing. * *

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

*

 * <simpleType name="PreProcessing">
 *   <restriction base="{http://www.w3.org/2001/XMLSchema}token">
 *     <enumeration value="ddi-32-to-ddi-33"/>
 *     <enumeration value="ddi-multimodal-selection"/>
 *     <enumeration value="ddi-markdownToXhtml"/>
 *     <enumeration value="ddi-mapping"/>
 *     <enumeration value="ddi-dereferencing"/>
 *     <enumeration value="ddi-cleaning"/>
 *     <enumeration value="ddi-titling"/>
 *     <enumeration value="pogues-xml-insert-filter-loop-into-question-tree"/>
 *     <enumeration value="pogues-xml-goto-2-ite"/>
 *     <enumeration value="pogues-xml-suppression-goto"/>
 *     <enumeration value="pogues-xml-tweak-to-merge-equivalent-ite"/>
 *   </restriction>
 * </simpleType>
 * 
* */ @XmlType(name = "PreProcessing") @XmlEnum public enum PreProcessing { @XmlEnumValue("ddi-32-to-ddi-33") DDI_32_TO_DDI_33("ddi-32-to-ddi-33"), @XmlEnumValue("ddi-multimodal-selection") DDI_MULTIMODAL_SELECTION("ddi-multimodal-selection"), @XmlEnumValue("ddi-markdownToXhtml") DDI_MARKDOWN_TO_XHTML("ddi-markdownToXhtml"), @XmlEnumValue("ddi-mapping") DDI_MAPPING("ddi-mapping"), @XmlEnumValue("ddi-dereferencing") DDI_DEREFERENCING("ddi-dereferencing"), @XmlEnumValue("ddi-cleaning") DDI_CLEANING("ddi-cleaning"), @XmlEnumValue("ddi-titling") DDI_TITLING("ddi-titling"), @XmlEnumValue("pogues-xml-insert-filter-loop-into-question-tree") POGUES_XML_INSERT_FILTER_LOOP_INTO_QUESTION_TREE("pogues-xml-insert-filter-loop-into-question-tree"), @XmlEnumValue("pogues-xml-goto-2-ite") POGUES_XML_GOTO_2_ITE("pogues-xml-goto-2-ite"), @XmlEnumValue("pogues-xml-suppression-goto") POGUES_XML_SUPPRESSION_GOTO("pogues-xml-suppression-goto"), @XmlEnumValue("pogues-xml-tweak-to-merge-equivalent-ite") POGUES_XML_TWEAK_TO_MERGE_EQUIVALENT_ITE("pogues-xml-tweak-to-merge-equivalent-ite"); private final String value; PreProcessing(String v) { value = v; } public String value() { return value; } public static PreProcessing fromValue(String v) { for (PreProcessing c: PreProcessing.values()) { if (c.value.equals(v)) { return c; } } throw new IllegalArgumentException(v); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy