Class TimeAnchor
- java.lang.Object
-
- weka.core.pmml.jaxbbindings.TimeAnchor
-
public class TimeAnchor extends java.lang.ObjectJava 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>
-
-
Constructor Summary
Constructors Constructor Description TimeAnchor()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetDisplayName()Gets the value of the displayName property.java.math.BigIntegergetOffset()Gets the value of the offset property.java.math.BigIntegergetStepsize()Gets the value of the stepsize property.java.util.List<TimeCycle>getTimeCycle()Gets the value of the timeCycle property.java.util.List<TimeException>getTimeException()Gets the value of the timeException property.TIMEANCHOR2getType()Gets the value of the type property.voidsetDisplayName(java.lang.String value)Sets the value of the displayName property.voidsetOffset(java.math.BigInteger value)Sets the value of the offset property.voidsetStepsize(java.math.BigInteger value)Sets the value of the stepsize property.voidsetType(TIMEANCHOR2 value)Sets the value of the type property.
-
-
-
Method Detail
-
getTimeCycle
public java.util.List<TimeCycle> getTimeCycle()
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
setmethod 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
TimeCycle
-
getTimeException
public java.util.List<TimeException> getTimeException()
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
setmethod 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
TimeException
-
getDisplayName
public java.lang.String getDisplayName()
Gets the value of the displayName property.- Returns:
- possible object is
String
-
setDisplayName
public void setDisplayName(java.lang.String value)
Sets the value of the displayName property.- Parameters:
value- allowed object isString
-
getOffset
public java.math.BigInteger getOffset()
Gets the value of the offset property.- Returns:
- possible object is
BigInteger
-
setOffset
public void setOffset(java.math.BigInteger value)
Sets the value of the offset property.- Parameters:
value- allowed object isBigInteger
-
getStepsize
public java.math.BigInteger getStepsize()
Gets the value of the stepsize property.- Returns:
- possible object is
BigInteger
-
setStepsize
public void setStepsize(java.math.BigInteger value)
Sets the value of the stepsize property.- Parameters:
value- allowed object isBigInteger
-
getType
public TIMEANCHOR2 getType()
Gets the value of the type property.- Returns:
- possible object is
TIMEANCHOR
-
setType
public void setType(TIMEANCHOR2 value)
Sets the value of the type property.- Parameters:
value- allowed object isTIMEANCHOR
-
-