Package org.dmg.pmml.time_series
Class Level
- java.lang.Object
-
- org.dmg.pmml.PMMLObject
-
- org.dmg.pmml.time_series.Level
-
- All Implemented Interfaces:
java.io.Serializable,HasLocator,Visitable
public class Level extends PMMLObject
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description Level()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description VisitorActionaccept(Visitor visitor)java.lang.NumbergetAlpha()java.lang.NumbergetCubicSmoothedValue()java.lang.NumbergetQuadraticSmoothedValue()java.lang.NumbergetSmoothedValue()LevelsetAlpha(java.lang.Number alpha)LevelsetCubicSmoothedValue(java.lang.Number cubicSmoothedValue)LevelsetQuadraticSmoothedValue(java.lang.Number quadraticSmoothedValue)LevelsetSmoothedValue(java.lang.Number smoothedValue)-
Methods inherited from class org.dmg.pmml.PMMLObject
getLocator, getSchemaVersion, getSchemaVersion, hasLocator, setLocator
-
-
-
-
Method Detail
-
getAlpha
public java.lang.Number getAlpha()
-
setAlpha
public Level setAlpha(java.lang.Number alpha)
-
getQuadraticSmoothedValue
public java.lang.Number getQuadraticSmoothedValue()
-
setQuadraticSmoothedValue
public Level setQuadraticSmoothedValue(java.lang.Number quadraticSmoothedValue)
-
getCubicSmoothedValue
public java.lang.Number getCubicSmoothedValue()
-
setCubicSmoothedValue
public Level setCubicSmoothedValue(java.lang.Number cubicSmoothedValue)
-
getSmoothedValue
public java.lang.Number getSmoothedValue()
-
setSmoothedValue
public Level setSmoothedValue(java.lang.Number smoothedValue)
-
accept
public VisitorAction accept(Visitor visitor)
-
-