org.dmg.pmml.Sequence Maven / Gradle / Ivy
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.XmlElements;
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}SetReference"/>
* <sequence maxOccurs="unbounded" minOccurs="0">
* <group ref="{http://www.dmg.org/PMML-4_2}FOLLOW-SET"/>
* </sequence>
* <element ref="{http://www.dmg.org/PMML-4_2}Time" minOccurs="0"/>
* </sequence>
* <attribute name="id" use="required" type="{http://www.dmg.org/PMML-4_2}ELEMENT-ID" />
* <attribute name="numberOfSets" type="{http://www.dmg.org/PMML-4_2}INT-NUMBER" />
* <attribute name="occurrence" type="{http://www.dmg.org/PMML-4_2}INT-NUMBER" />
* <attribute name="support" type="{http://www.dmg.org/PMML-4_2}REAL-NUMBER" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"extensions",
"setReference",
"content",
"time"
})
@XmlRootElement(name = "Sequence")
public class Sequence
extends PMMLObject
implements Locatable, HasExtensions, HasId
{
@XmlElement(name = "Extension")
protected List extensions;
@XmlElement(name = "SetReference", required = true)
protected SetReference setReference;
@XmlElements({
@XmlElement(name = "Extension", type = Extension.class),
@XmlElement(name = "Delimiter", type = Delimiter.class),
@XmlElement(name = "Time", type = Time.class),
@XmlElement(name = "SetReference", type = SetReference.class)
})
protected List content;
@XmlElement(name = "Time")
@Added(Version.PMML_3_1)
protected Time time;
@XmlAttribute(name = "id", required = true)
protected String id;
@XmlAttribute(name = "numberOfSets")
protected Integer numberOfSets;
@XmlAttribute(name = "occurrence")
protected Integer occurrence;
@XmlAttribute(name = "support")
protected Double support;
@XmlLocation
@XmlTransient
protected Locator locator;
public Sequence() {
super();
}
public Sequence(final SetReference setReference, final String id) {
super();
this.setReference = setReference;
this.id = id;
}
/**
* 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 setReference property.
*
* @return
* possible object is
* {@link SetReference }
*
*/
public SetReference getSetReference() {
return setReference;
}
/**
* Sets the value of the setReference property.
*
* @param value
* allowed object is
* {@link SetReference }
*
*/
public void setSetReference(SetReference value) {
this.setReference = value;
}
/**
* Gets the value of the content 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 content property.
*
*
* For example, to add a new item, do as follows:
*
* getContent().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link Extension }
* {@link Delimiter }
* {@link Time }
* {@link SetReference }
*
*
*/
public List getContent() {
if (content == null) {
content = new ArrayList();
}
return this.content;
}
/**
* Gets the value of the time property.
*
* @return
* possible object is
* {@link Time }
*
*/
public Time getTime() {
return time;
}
/**
* Sets the value of the time property.
*
* @param value
* allowed object is
* {@link Time }
*
*/
public void setTime(Time value) {
this.time = value;
}
/**
* Gets the value of the id property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getId() {
return id;
}
/**
* Sets the value of the id property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setId(String value) {
this.id = value;
}
/**
* Gets the value of the numberOfSets property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getNumberOfSets() {
return numberOfSets;
}
/**
* Sets the value of the numberOfSets property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setNumberOfSets(Integer value) {
this.numberOfSets = value;
}
/**
* Gets the value of the occurrence property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getOccurrence() {
return occurrence;
}
/**
* Sets the value of the occurrence property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setOccurrence(Integer value) {
this.occurrence = value;
}
/**
* Gets the value of the support property.
*
* @return
* possible object is
* {@link Double }
*
*/
public Double getSupport() {
return support;
}
/**
* Sets the value of the support property.
*
* @param value
* allowed object is
* {@link Double }
*
*/
public void setSupport(Double value) {
this.support = value;
}
public Sequence withExtensions(Extension... values) {
if (values!= null) {
for (Extension value: values) {
getExtensions().add(value);
}
}
return this;
}
public Sequence withExtensions(Collection values) {
if (values!= null) {
getExtensions().addAll(values);
}
return this;
}
public Sequence withSetReference(SetReference value) {
setSetReference(value);
return this;
}
public Sequence withContent(PMMLObject... values) {
if (values!= null) {
for (PMMLObject value: values) {
getContent().add(value);
}
}
return this;
}
public Sequence withContent(Collection values) {
if (values!= null) {
getContent().addAll(values);
}
return this;
}
public Sequence withTime(Time value) {
setTime(value);
return this;
}
public Sequence withId(String value) {
setId(value);
return this;
}
public Sequence withNumberOfSets(Integer value) {
setNumberOfSets(value);
return this;
}
public Sequence withOccurrence(Integer value) {
setOccurrence(value);
return this;
}
public Sequence withSupport(Double value) {
setSupport(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