org.dmg.pmml.pmml_4_1.descr
Class ExponentialSmoothing

java.lang.Object
  extended by org.dmg.pmml.pmml_4_1.descr.ExponentialSmoothing
All Implemented Interfaces:
Serializable

public class ExponentialSmoothing
extends Object
implements Serializable

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_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>
 

See Also:
Serialized Form

Field Summary
protected  Level level
           
protected  Double rmse
           
protected  SeasonalityExpoSmooth seasonalityExpoSmooth
           
protected  List<TimeValue> timeValues
           
protected  String transformation
           
protected  TrendExpoSmooth trendExpoSmooth
           
 
Constructor Summary
ExponentialSmoothing()
           
 
Method Summary
 Level getLevel()
          Gets the value of the level property.
 Double getRMSE()
          Gets the value of the rmse property.
 SeasonalityExpoSmooth getSeasonalityExpoSmooth()
          Gets the value of the seasonalityExpoSmooth property.
 List<TimeValue> getTimeValues()
          Gets the value of the timeValues property.
 String getTransformation()
          Gets the value of the transformation property.
 TrendExpoSmooth getTrendExpoSmooth()
          Gets the value of the trendExpoSmooth property.
 void setLevel(Level value)
          Sets the value of the level property.
 void setRMSE(Double value)
          Sets the value of the rmse property.
 void setSeasonalityExpoSmooth(SeasonalityExpoSmooth value)
          Sets the value of the seasonalityExpoSmooth property.
 void setTransformation(String value)
          Sets the value of the transformation property.
 void setTrendExpoSmooth(TrendExpoSmooth value)
          Sets the value of the trendExpoSmooth property.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

level

protected Level level

trendExpoSmooth

protected TrendExpoSmooth trendExpoSmooth

seasonalityExpoSmooth

protected SeasonalityExpoSmooth seasonalityExpoSmooth

timeValues

protected List<TimeValue> timeValues

rmse

protected Double rmse

transformation

protected String transformation
Constructor Detail

ExponentialSmoothing

public ExponentialSmoothing()
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 is Level

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 is TrendExpoSmooth

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 is SeasonalityExpoSmooth

getTimeValues

public List<TimeValue> getTimeValues()
Gets the value of the timeValues 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 timeValues property.

For example, to add a new item, do as follows:

    getTimeValues().add(newItem);
 

Objects of the following type(s) are allowed in the list TimeValue


getRMSE

public Double getRMSE()
Gets the value of the rmse property.

Returns:
possible object is Double

setRMSE

public void setRMSE(Double value)
Sets the value of the rmse property.

Parameters:
value - allowed object is Double

getTransformation

public String getTransformation()
Gets the value of the transformation property.

Returns:
possible object is String

setTransformation

public void setTransformation(String value)
Sets the value of the transformation property.

Parameters:
value - allowed object is String


Copyright © 2001-2012 JBoss by Red Hat. All Rights Reserved.