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

org.dmg.pmml.Sequence 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.XmlElements;
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}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", namespace = "http://www.dmg.org/PMML-4_2") public class Sequence extends org.dmg.pmml.PMMLObject implements HasExtensions, HasId, Indexable { @XmlAttribute(name = "id", required = true) private String id; @XmlAttribute(name = "numberOfSets") private Integer numberOfSets; @XmlAttribute(name = "occurrence") private Integer occurrence; @XmlAttribute(name = "support") private Double support; @XmlElement(name = "Extension", namespace = "http://www.dmg.org/PMML-4_2") private List extensions; @XmlElement(name = "SetReference", namespace = "http://www.dmg.org/PMML-4_2", required = true) private SetReference setReference; @XmlElements({ @XmlElement(name = "Extension", namespace = "http://www.dmg.org/PMML-4_2", type = Extension.class), @XmlElement(name = "Delimiter", namespace = "http://www.dmg.org/PMML-4_2", type = Delimiter.class), @XmlElement(name = "Time", namespace = "http://www.dmg.org/PMML-4_2", type = Time.class), @XmlElement(name = "SetReference", namespace = "http://www.dmg.org/PMML-4_2", type = SetReference.class) }) private List content; @XmlElement(name = "Time", namespace = "http://www.dmg.org/PMML-4_2") @Added(Version.PMML_3_1) private Time time; public Sequence() { super(); } public Sequence(final String id, final SetReference setReference) { super(); this.id = id; this.setReference = setReference; } /** * 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 id * allowed object is * {@link String } * */ public Sequence setId(String id) { this.id = id; return this; } /** * 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 numberOfSets * allowed object is * {@link Integer } * */ public Sequence setNumberOfSets(Integer numberOfSets) { this.numberOfSets = numberOfSets; return this; } /** * 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 occurrence * allowed object is * {@link Integer } * */ public Sequence setOccurrence(Integer occurrence) { this.occurrence = occurrence; return this; } /** * 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 support * allowed object is * {@link Double } * */ public Sequence setSupport(Double support) { this.support = support; 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 setReference property. * * @return * possible object is * {@link SetReference } * */ public SetReference getSetReference() { return setReference; } /** * Sets the value of the setReference property. * * @param setReference * allowed object is * {@link SetReference } * */ public Sequence setSetReference(SetReference setReference) { this.setReference = setReference; return this; } /** * 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 time * allowed object is * {@link Time } * */ public Sequence setTime(Time time) { this.time = time; return this; } @Override public String getKey() { return getId(); } public boolean hasExtensions() { return ((this.extensions!= null)&&(this.extensions.size()> 0)); } public Sequence addExtensions(Extension... extensions) { getExtensions().addAll(Arrays.asList(extensions)); return this; } public boolean hasContent() { return ((this.content!= null)&&(this.content.size()> 0)); } public Sequence addContent(org.dmg.pmml.PMMLObject... content) { getContent().addAll(Arrays.asList(content)); 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) { status = org.dmg.pmml.PMMLObject.traverse(visitor, getSetReference()); } if ((status == VisitorAction.CONTINUE)&&hasContent()) { status = org.dmg.pmml.PMMLObject.traverse(visitor, getContent()); } if (status == VisitorAction.CONTINUE) { status = org.dmg.pmml.PMMLObject.traverse(visitor, getTime()); } visitor.popParent(); } if (status == VisitorAction.TERMINATE) { return VisitorAction.TERMINATE; } return VisitorAction.CONTINUE; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy