weka.core.pmml.jaxbbindings.TimeAnchor Maven / Gradle / Ivy
Show all versions of weka-dev Show documentation
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b52-fcs
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2013.12.20 at 12:48:21 PM GMT
//
package weka.core.pmml.jaxbbindings;
import java.math.BigInteger;
import java.util.ArrayList;
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;
/**
* Java class for TimeAnchor element declaration.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <element name="TimeAnchor">
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element ref="{http://www.dmg.org/PMML-4_1}TimeCycle" maxOccurs="unbounded" minOccurs="0"/>
* <element ref="{http://www.dmg.org/PMML-4_1}TimeException" maxOccurs="2" minOccurs="0"/>
* </sequence>
* <attribute name="displayName" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" />
* <attribute name="offset" type="{http://www.dmg.org/PMML-4_1}INT-NUMBER" />
* <attribute name="stepsize" type="{http://www.dmg.org/PMML-4_1}INT-NUMBER" />
* <attribute name="type" type="{http://www.dmg.org/PMML-4_1}TIME-ANCHOR" />
* </restriction>
* </complexContent>
* </complexType>
* </element>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"timeCycle",
"timeException"
})
@XmlRootElement(name = "TimeAnchor")
public class TimeAnchor {
@XmlElement(name = "TimeCycle", namespace = "http://www.dmg.org/PMML-4_1", required = true)
protected List timeCycle;
@XmlElement(name = "TimeException", namespace = "http://www.dmg.org/PMML-4_1", required = true)
protected List timeException;
@XmlAttribute
protected String displayName;
@XmlAttribute
protected BigInteger offset;
@XmlAttribute
protected BigInteger stepsize;
@XmlAttribute
protected TIMEANCHOR2 type;
/**
* Gets the value of the timeCycle 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 timeCycle property.
*
*
* For example, to add a new item, do as follows:
*
* getTimeCycle().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link TimeCycle }
*
*
*/
public List getTimeCycle() {
if (timeCycle == null) {
timeCycle = new ArrayList();
}
return this.timeCycle;
}
/**
* Gets the value of the timeException 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 timeException property.
*
*
* For example, to add a new item, do as follows:
*
* getTimeException().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link TimeException }
*
*
*/
public List getTimeException() {
if (timeException == null) {
timeException = new ArrayList();
}
return this.timeException;
}
/**
* Gets the value of the displayName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDisplayName() {
return displayName;
}
/**
* Sets the value of the displayName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDisplayName(String value) {
this.displayName = value;
}
/**
* Gets the value of the offset property.
*
* @return
* possible object is
* {@link BigInteger }
*
*/
public BigInteger getOffset() {
return offset;
}
/**
* Sets the value of the offset property.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setOffset(BigInteger value) {
this.offset = value;
}
/**
* Gets the value of the stepsize property.
*
* @return
* possible object is
* {@link BigInteger }
*
*/
public BigInteger getStepsize() {
return stepsize;
}
/**
* Sets the value of the stepsize property.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setStepsize(BigInteger value) {
this.stepsize = value;
}
/**
* Gets the value of the type property.
*
* @return
* possible object is
* {@link TIMEANCHOR }
*
*/
public TIMEANCHOR2 getType() {
return type;
}
/**
* Sets the value of the type property.
*
* @param value
* allowed object is
* {@link TIMEANCHOR }
*
*/
public void setType(TIMEANCHOR2 value) {
this.type = value;
}
}