
org.dmg.pmml.BaseCumHazardTables Maven / Gradle / Ivy
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"/>
* <choice>
* <element ref="{http://www.dmg.org/PMML-4_2}BaselineStratum" maxOccurs="unbounded"/>
* <element ref="{http://www.dmg.org/PMML-4_2}BaselineCell" maxOccurs="unbounded"/>
* </choice>
* </sequence>
* <attribute name="maxTime" type="{http://www.dmg.org/PMML-4_2}REAL-NUMBER" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"extensions",
"baselineStrata",
"baselineCells"
})
@XmlRootElement(name = "BaseCumHazardTables", namespace = "http://www.dmg.org/PMML-4_2")
@Added(Version.PMML_4_0)
public class BaseCumHazardTables
extends org.dmg.pmml.PMMLObject
implements HasExtensions
{
@XmlAttribute(name = "maxTime")
private Double maxTime;
@XmlElement(name = "Extension", namespace = "http://www.dmg.org/PMML-4_2")
private List extensions;
@XmlElement(name = "BaselineStratum", namespace = "http://www.dmg.org/PMML-4_2")
private List baselineStrata;
@XmlElement(name = "BaselineCell", namespace = "http://www.dmg.org/PMML-4_2")
private List baselineCells;
/**
* Gets the value of the maxTime property.
*
* @return
* possible object is
* {@link Double }
*
*/
public Double getMaxTime() {
return maxTime;
}
/**
* Sets the value of the maxTime property.
*
* @param maxTime
* allowed object is
* {@link Double }
*
*/
public BaseCumHazardTables 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 baselineStrata 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 baselineStrata property.
*
*
* For example, to add a new item, do as follows:
*
* getBaselineStrata().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link BaselineStratum }
*
*
*/
public List getBaselineStrata() {
if (baselineStrata == null) {
baselineStrata = new ArrayList();
}
return this.baselineStrata;
}
/**
* 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 BaseCumHazardTables addExtensions(Extension... extensions) {
getExtensions().addAll(Arrays.asList(extensions));
return this;
}
public boolean hasBaselineStrata() {
return ((this.baselineStrata!= null)&&(this.baselineStrata.size()> 0));
}
public BaseCumHazardTables addBaselineStrata(BaselineStratum... baselineStrata) {
getBaselineStrata().addAll(Arrays.asList(baselineStrata));
return this;
}
public boolean hasBaselineCells() {
return ((this.baselineCells!= null)&&(this.baselineCells.size()> 0));
}
public BaseCumHazardTables 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)&&hasBaselineStrata()) {
status = org.dmg.pmml.PMMLObject.traverse(visitor, getBaselineStrata());
}
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;
}
}