Package weka.core.pmml.jaxbbindings
Class TimeValue
- java.lang.Object
-
- weka.core.pmml.jaxbbindings.TimeValue
-
public class TimeValue extends java.lang.ObjectJava class for TimeValue element declaration.
The following schema fragment specifies the expected content contained within this class.
<element name="TimeValue"> <complexType> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element ref="{http://www.dmg.org/PMML-4_1}Timestamp" minOccurs="0"/> </sequence> <attribute name="index" type="{http://www.dmg.org/PMML-4_1}INT-NUMBER" /> <attribute name="standardError" type="{http://www.dmg.org/PMML-4_1}REAL-NUMBER" /> <attribute name="time" type="{http://www.dmg.org/PMML-4_1}NUMBER" /> <attribute name="value" use="required" type="{http://www.dmg.org/PMML-4_1}REAL-NUMBER" /> </restriction> </complexContent> </complexType> </element>
-
-
Constructor Summary
Constructors Constructor Description TimeValue()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.math.BigIntegergetIndex()Gets the value of the index property.java.lang.DoublegetStandardError()Gets the value of the standardError property.java.lang.DoublegetTime()Gets the value of the time property.TimestampgetTimestamp()Gets the value of the timestamp property.doublegetValue()Gets the value of the value property.voidsetIndex(java.math.BigInteger value)Sets the value of the index property.voidsetStandardError(java.lang.Double value)Sets the value of the standardError property.voidsetTime(java.lang.Double value)Sets the value of the time property.voidsetTimestamp(Timestamp value)Sets the value of the timestamp property.voidsetValue(double value)Sets the value of the value property.
-
-
-
Method Detail
-
getTimestamp
public Timestamp getTimestamp()
Gets the value of the timestamp property.- Returns:
- possible object is
Timestamp
-
setTimestamp
public void setTimestamp(Timestamp value)
Sets the value of the timestamp property.- Parameters:
value- allowed object isTimestamp
-
getIndex
public java.math.BigInteger getIndex()
Gets the value of the index property.- Returns:
- possible object is
BigInteger
-
setIndex
public void setIndex(java.math.BigInteger value)
Sets the value of the index property.- Parameters:
value- allowed object isBigInteger
-
getStandardError
public java.lang.Double getStandardError()
Gets the value of the standardError property.- Returns:
- possible object is
Double
-
setStandardError
public void setStandardError(java.lang.Double value)
Sets the value of the standardError property.- Parameters:
value- allowed object isDouble
-
getTime
public java.lang.Double getTime()
Gets the value of the time property.- Returns:
- possible object is
Double
-
setTime
public void setTime(java.lang.Double value)
Sets the value of the time property.- Parameters:
value- allowed object isDouble
-
getValue
public double getValue()
Gets the value of the value property.
-
setValue
public void setValue(double value)
Sets the value of the value property.
-
-