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

org.dmg.pmml.MapValues Maven / Gradle / Ivy

There is a newer version: 1.6.5
Show newest version

package org.dmg.pmml;

import java.util.ArrayList;
import java.util.Collection;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlTransient;
import javax.xml.bind.annotation.XmlType;
import com.sun.xml.bind.Locatable;
import com.sun.xml.bind.annotation.XmlLocation;
import org.jpmml.schema.Added;
import org.jpmml.schema.Version;
import org.xml.sax.Locator;


/**
 * 

Java class for anonymous complex type. * *

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

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element ref="{http://www.dmg.org/PMML-4_2}Extension" maxOccurs="unbounded" minOccurs="0"/>
 *         <element ref="{http://www.dmg.org/PMML-4_2}FieldColumnPair" maxOccurs="unbounded" minOccurs="0"/>
 *         <choice minOccurs="0">
 *           <element ref="{http://www.dmg.org/PMML-4_2}TableLocator"/>
 *           <element ref="{http://www.dmg.org/PMML-4_2}InlineTable"/>
 *         </choice>
 *       </sequence>
 *       <attribute name="mapMissingTo" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="defaultValue" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="outputColumn" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="dataType" type="{http://www.dmg.org/PMML-4_2}DATATYPE" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "extensions", "fieldColumnPairs", "tableLocator", "inlineTable" }) @XmlRootElement(name = "MapValues") public class MapValues extends Expression implements Locatable, HasExtensions { @XmlElement(name = "Extension") protected List extensions; @XmlElement(name = "FieldColumnPair") @Added(Version.PMML_4_2) protected List fieldColumnPairs; @XmlElement(name = "TableLocator") protected TableLocator tableLocator; @XmlElement(name = "InlineTable") protected InlineTable inlineTable; @XmlAttribute(name = "mapMissingTo") protected String mapMissingTo; @XmlAttribute(name = "defaultValue") protected String defaultValue; @XmlAttribute(name = "outputColumn", required = true) protected String outputColumn; @XmlAttribute(name = "dataType") @Added(Version.PMML_3_1) protected DataType dataType; @XmlLocation @XmlTransient protected Locator locator; public MapValues() { super(); } public MapValues(final String outputColumn) { super(); this.outputColumn = outputColumn; } /** * Gets the value of the extensions 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 extensions property. * *

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

     *    getExtensions().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link Extension } * * */ public List getExtensions() { if (extensions == null) { extensions = new ArrayList(); } return this.extensions; } /** * Gets the value of the fieldColumnPairs 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 fieldColumnPairs property. * *

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

     *    getFieldColumnPairs().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link FieldColumnPair } * * */ public List getFieldColumnPairs() { if (fieldColumnPairs == null) { fieldColumnPairs = new ArrayList(); } return this.fieldColumnPairs; } /** * Gets the value of the tableLocator property. * * @return * possible object is * {@link TableLocator } * */ public TableLocator getTableLocator() { return tableLocator; } /** * Sets the value of the tableLocator property. * * @param value * allowed object is * {@link TableLocator } * */ public void setTableLocator(TableLocator value) { this.tableLocator = value; } /** * Gets the value of the inlineTable property. * * @return * possible object is * {@link InlineTable } * */ public InlineTable getInlineTable() { return inlineTable; } /** * Sets the value of the inlineTable property. * * @param value * allowed object is * {@link InlineTable } * */ public void setInlineTable(InlineTable value) { this.inlineTable = value; } /** * Gets the value of the mapMissingTo property. * * @return * possible object is * {@link String } * */ public String getMapMissingTo() { return mapMissingTo; } /** * Sets the value of the mapMissingTo property. * * @param value * allowed object is * {@link String } * */ public void setMapMissingTo(String value) { this.mapMissingTo = value; } /** * Gets the value of the defaultValue property. * * @return * possible object is * {@link String } * */ public String getDefaultValue() { return defaultValue; } /** * Sets the value of the defaultValue property. * * @param value * allowed object is * {@link String } * */ public void setDefaultValue(String value) { this.defaultValue = value; } /** * Gets the value of the outputColumn property. * * @return * possible object is * {@link String } * */ public String getOutputColumn() { return outputColumn; } /** * Sets the value of the outputColumn property. * * @param value * allowed object is * {@link String } * */ public void setOutputColumn(String value) { this.outputColumn = value; } /** * Gets the value of the dataType property. * * @return * possible object is * {@link DataType } * */ public DataType getDataType() { return dataType; } /** * Sets the value of the dataType property. * * @param value * allowed object is * {@link DataType } * */ public void setDataType(DataType value) { this.dataType = value; } public MapValues withExtensions(Extension... values) { if (values!= null) { for (Extension value: values) { getExtensions().add(value); } } return this; } public MapValues withExtensions(Collection values) { if (values!= null) { getExtensions().addAll(values); } return this; } public MapValues withFieldColumnPairs(FieldColumnPair... values) { if (values!= null) { for (FieldColumnPair value: values) { getFieldColumnPairs().add(value); } } return this; } public MapValues withFieldColumnPairs(Collection values) { if (values!= null) { getFieldColumnPairs().addAll(values); } return this; } public MapValues withTableLocator(TableLocator value) { setTableLocator(value); return this; } public MapValues withInlineTable(InlineTable value) { setInlineTable(value); return this; } public MapValues withMapMissingTo(String value) { setMapMissingTo(value); return this; } public MapValues withDefaultValue(String value) { setDefaultValue(value); return this; } public MapValues withOutputColumn(String value) { setOutputColumn(value); return this; } public MapValues withDataType(DataType value) { setDataType(value); return this; } public Locator sourceLocation() { return locator; } public void setSourceLocation(Locator newLocator) { locator = newLocator; } @Override public VisitorAction accept(Visitor visitor) { VisitorAction status = visitor.visit(this); for (int i = 0; (((status == VisitorAction.CONTINUE)&&(this.extensions!= null))&&(i





© 2015 - 2024 Weber Informatics LLC | Privacy Policy