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

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

There is a newer version: 1.7.2
Show newest version

package org.dmg.pmml;

import java.util.ArrayList;
import java.util.Arrays;
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.XmlType;
import org.jpmml.schema.Added;
import org.jpmml.schema.Version;


/**
 * 

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}BaselineCell" maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *       <attribute name="value" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="label" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="maxTime" use="required" type="{http://www.dmg.org/PMML-4_2}REAL-NUMBER" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "extensions", "baselineCells" }) @XmlRootElement(name = "BaselineStratum", namespace = "http://www.dmg.org/PMML-4_2") @Added(Version.PMML_4_0) public class BaselineStratum extends org.dmg.pmml.PMMLObject implements HasExtensions { @XmlAttribute(name = "value", required = true) private String value; @XmlAttribute(name = "label") private String label; @XmlAttribute(name = "maxTime", required = true) private double maxTime; @XmlElement(name = "Extension", namespace = "http://www.dmg.org/PMML-4_2") private List extensions; @XmlElement(name = "BaselineCell", namespace = "http://www.dmg.org/PMML-4_2") private List baselineCells; public BaselineStratum() { super(); } public BaselineStratum(final String value, final double maxTime) { super(); this.value = value; this.maxTime = maxTime; } /** * Gets the value of the value property. * * @return * possible object is * {@link String } * */ public String getValue() { return value; } /** * Sets the value of the value property. * * @param value * allowed object is * {@link String } * */ public BaselineStratum setValue(String value) { this.value = value; return this; } /** * Gets the value of the label property. * * @return * possible object is * {@link String } * */ public String getLabel() { return label; } /** * Sets the value of the label property. * * @param label * allowed object is * {@link String } * */ public BaselineStratum setLabel(String label) { this.label = label; return this; } /** * Gets the value of the maxTime property. * */ public double getMaxTime() { return maxTime; } /** * Sets the value of the maxTime property. * */ public BaselineStratum setMaxTime(double maxTime) { this.maxTime = maxTime; return this; } /** * 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 baselineCells 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 baselineCells property. * *

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

     *    getBaselineCells().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link BaselineCell } * * */ public List getBaselineCells() { if (baselineCells == null) { baselineCells = new ArrayList(); } return this.baselineCells; } public boolean hasExtensions() { return ((this.extensions!= null)&&(this.extensions.size()> 0)); } public BaselineStratum addExtensions(Extension... extensions) { getExtensions().addAll(Arrays.asList(extensions)); return this; } public boolean hasBaselineCells() { return ((this.baselineCells!= null)&&(this.baselineCells.size()> 0)); } public BaselineStratum addBaselineCells(BaselineCell... baselineCells) { getBaselineCells().addAll(Arrays.asList(baselineCells)); return this; } @Override public VisitorAction accept(Visitor visitor) { VisitorAction status = visitor.visit(this); if (status == VisitorAction.CONTINUE) { visitor.pushParent(this); if ((status == VisitorAction.CONTINUE)&&hasExtensions()) { status = org.dmg.pmml.PMMLObject.traverse(visitor, getExtensions()); } if ((status == VisitorAction.CONTINUE)&&hasBaselineCells()) { status = org.dmg.pmml.PMMLObject.traverse(visitor, getBaselineCells()); } visitor.popParent(); } if (status == VisitorAction.TERMINATE) { return VisitorAction.TERMINATE; } return VisitorAction.CONTINUE; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy