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

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

Go to download

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

There is a newer version: 2.12.1
Show 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 java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for Pipeline complex type. * *

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

 * <complexType name="Pipeline">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="InFormat" type="{}InFormat"/>
 *         <element name="OutFormat" type="{}OutFormat"/>
 *         <sequence>
 *           <element name="PreProcessing" type="{}PreProcessing" maxOccurs="unbounded" minOccurs="0"/>
 *         </sequence>
 *         <sequence>
 *           <element name="PostProcessing" type="{}PostProcessing" maxOccurs="unbounded" minOccurs="0"/>
 *         </sequence>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Pipeline", propOrder = { "inFormat", "outFormat", "preProcessing", "postProcessing" }) public class Pipeline { @XmlElement(name = "InFormat", required = true) @XmlSchemaType(name = "token") protected InFormat inFormat; @XmlElement(name = "OutFormat", required = true) @XmlSchemaType(name = "token") protected OutFormat outFormat; @XmlElement(name = "PreProcessing") @XmlSchemaType(name = "token") protected List preProcessing; @XmlElement(name = "PostProcessing") @XmlSchemaType(name = "token") protected List postProcessing; /** * Gets the value of the inFormat property. * * @return * possible object is * {@link InFormat } * */ public InFormat getInFormat() { return inFormat; } /** * Sets the value of the inFormat property. * * @param value * allowed object is * {@link InFormat } * */ public void setInFormat(InFormat value) { this.inFormat = value; } /** * Gets the value of the outFormat property. * * @return * possible object is * {@link OutFormat } * */ public OutFormat getOutFormat() { return outFormat; } /** * Sets the value of the outFormat property. * * @param value * allowed object is * {@link OutFormat } * */ public void setOutFormat(OutFormat value) { this.outFormat = value; } /** * Gets the value of the preProcessing property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the preProcessing property. * *

* For example, to add a new item, do as follows: *

     *    getPreProcessing().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link PreProcessing } * * */ public List getPreProcessing() { if (preProcessing == null) { preProcessing = new ArrayList(); } return this.preProcessing; } /** * Gets the value of the postProcessing property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the postProcessing property. * *

* For example, to add a new item, do as follows: *

     *    getPostProcessing().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link PostProcessing } * * */ public List getPostProcessing() { if (postProcessing == null) { postProcessing = new ArrayList(); } return this.postProcessing; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy