Package weka.core.pmml.jaxbbindings
Class SeasonalityExpoSmooth
- java.lang.Object
-
- weka.core.pmml.jaxbbindings.SeasonalityExpoSmooth
-
public class SeasonalityExpoSmooth extends java.lang.ObjectJava class for Seasonality_ExpoSmooth element declaration.
The following schema fragment specifies the expected content contained within this class.
<element name="Seasonality_ExpoSmooth"> <complexType> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <group ref="{http://www.dmg.org/PMML-4_1}REAL-ARRAY"/> </sequence> <attribute name="delta" type="{http://www.dmg.org/PMML-4_1}REAL-NUMBER" /> <attribute name="period" use="required" type="{http://www.dmg.org/PMML-4_1}INT-NUMBER" /> <attribute name="phase" type="{http://www.dmg.org/PMML-4_1}INT-NUMBER" /> <attribute name="type" use="required"> <simpleType> <restriction base="{http://www.w3.org/2001/XMLSchema}NMTOKEN"> <enumeration value="additive"/> <enumeration value="multiplicative"/> </restriction> </simpleType> </attribute> <attribute name="unit" type="{http://www.w3.org/2001/XMLSchema}string" /> </restriction> </complexContent> </complexType> </element>
-
-
Constructor Summary
Constructors Constructor Description SeasonalityExpoSmooth()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ArrayTypegetArray()Gets the value of the array property.java.lang.DoublegetDelta()Gets the value of the delta property.java.math.BigIntegergetPeriod()Gets the value of the period property.java.math.BigIntegergetPhase()Gets the value of the phase property.java.lang.StringgetType()Gets the value of the type property.java.lang.StringgetUnit()Gets the value of the unit property.voidsetArray(ArrayType value)Sets the value of the array property.voidsetDelta(java.lang.Double value)Sets the value of the delta property.voidsetPeriod(java.math.BigInteger value)Sets the value of the period property.voidsetPhase(java.math.BigInteger value)Sets the value of the phase property.voidsetType(java.lang.String value)Sets the value of the type property.voidsetUnit(java.lang.String value)Sets the value of the unit property.
-
-
-
Method Detail
-
getArray
public ArrayType getArray()
Gets the value of the array property.- Returns:
- possible object is
ArrayType
-
setArray
public void setArray(ArrayType value)
Sets the value of the array property.- Parameters:
value- allowed object isArrayType
-
getDelta
public java.lang.Double getDelta()
Gets the value of the delta property.- Returns:
- possible object is
Double
-
setDelta
public void setDelta(java.lang.Double value)
Sets the value of the delta property.- Parameters:
value- allowed object isDouble
-
getPeriod
public java.math.BigInteger getPeriod()
Gets the value of the period property.- Returns:
- possible object is
BigInteger
-
setPeriod
public void setPeriod(java.math.BigInteger value)
Sets the value of the period property.- Parameters:
value- allowed object isBigInteger
-
getPhase
public java.math.BigInteger getPhase()
Gets the value of the phase property.- Returns:
- possible object is
BigInteger
-
setPhase
public void setPhase(java.math.BigInteger value)
Sets the value of the phase property.- Parameters:
value- allowed object isBigInteger
-
getType
public java.lang.String getType()
Gets the value of the type property.- Returns:
- possible object is
String
-
setType
public void setType(java.lang.String value)
Sets the value of the type property.- Parameters:
value- allowed object isString
-
getUnit
public java.lang.String getUnit()
Gets the value of the unit property.- Returns:
- possible object is
String
-
setUnit
public void setUnit(java.lang.String value)
Sets the value of the unit property.- Parameters:
value- allowed object isString
-
-