Package weka.core.pmml.jaxbbindings
Class ExponentialSmoothing
- java.lang.Object
-
- weka.core.pmml.jaxbbindings.ExponentialSmoothing
-
public class ExponentialSmoothing extends java.lang.ObjectJava class for ExponentialSmoothing element declaration.
The following schema fragment specifies the expected content contained within this class.
<element name="ExponentialSmoothing"> <complexType> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element ref="{http://www.dmg.org/PMML-4_1}Level"/> <element ref="{http://www.dmg.org/PMML-4_1}Trend_ExpoSmooth" minOccurs="0"/> <element ref="{http://www.dmg.org/PMML-4_1}Seasonality_ExpoSmooth" minOccurs="0"/> <element ref="{http://www.dmg.org/PMML-4_1}TimeValue" maxOccurs="unbounded" minOccurs="0"/> </sequence> <attribute name="RMSE" type="{http://www.dmg.org/PMML-4_1}REAL-NUMBER" /> <attribute name="transformation" default="none"> <simpleType> <restriction base="{http://www.w3.org/2001/XMLSchema}NMTOKEN"> <enumeration value="none"/> <enumeration value="logarithmic"/> <enumeration value="squareroot"/> </restriction> </simpleType> </attribute> </restriction> </complexContent> </complexType> </element>
-
-
Constructor Summary
Constructors Constructor Description ExponentialSmoothing()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description LevelgetLevel()Gets the value of the level property.java.lang.DoublegetRMSE()Gets the value of the rmse property.SeasonalityExpoSmoothgetSeasonalityExpoSmooth()Gets the value of the seasonalityExpoSmooth property.java.util.List<TimeValue>getTimeValue()Gets the value of the timeValue property.java.lang.StringgetTransformation()Gets the value of the transformation property.TrendExpoSmoothgetTrendExpoSmooth()Gets the value of the trendExpoSmooth property.voidsetLevel(Level value)Sets the value of the level property.voidsetRMSE(java.lang.Double value)Sets the value of the rmse property.voidsetSeasonalityExpoSmooth(SeasonalityExpoSmooth value)Sets the value of the seasonalityExpoSmooth property.voidsetTransformation(java.lang.String value)Sets the value of the transformation property.voidsetTrendExpoSmooth(TrendExpoSmooth value)Sets the value of the trendExpoSmooth property.
-
-
-
Method Detail
-
getLevel
public Level getLevel()
Gets the value of the level property.- Returns:
- possible object is
Level
-
setLevel
public void setLevel(Level value)
Sets the value of the level property.- Parameters:
value- allowed object isLevel
-
getTrendExpoSmooth
public TrendExpoSmooth getTrendExpoSmooth()
Gets the value of the trendExpoSmooth property.- Returns:
- possible object is
TrendExpoSmooth
-
setTrendExpoSmooth
public void setTrendExpoSmooth(TrendExpoSmooth value)
Sets the value of the trendExpoSmooth property.- Parameters:
value- allowed object isTrendExpoSmooth
-
getSeasonalityExpoSmooth
public SeasonalityExpoSmooth getSeasonalityExpoSmooth()
Gets the value of the seasonalityExpoSmooth property.- Returns:
- possible object is
SeasonalityExpoSmooth
-
setSeasonalityExpoSmooth
public void setSeasonalityExpoSmooth(SeasonalityExpoSmooth value)
Sets the value of the seasonalityExpoSmooth property.- Parameters:
value- allowed object isSeasonalityExpoSmooth
-
getTimeValue
public java.util.List<TimeValue> getTimeValue()
Gets the value of the timeValue 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 timeValue property.For example, to add a new item, do as follows:
getTimeValue().add(newItem);Objects of the following type(s) are allowed in the list
TimeValue
-
getRMSE
public java.lang.Double getRMSE()
Gets the value of the rmse property.- Returns:
- possible object is
Double
-
setRMSE
public void setRMSE(java.lang.Double value)
Sets the value of the rmse property.- Parameters:
value- allowed object isDouble
-
getTransformation
public java.lang.String getTransformation()
Gets the value of the transformation property.- Returns:
- possible object is
String
-
setTransformation
public void setTransformation(java.lang.String value)
Sets the value of the transformation property.- Parameters:
value- allowed object isString
-
-