Package org.dmg.pmml.time_series
Class TimeAnchor
- java.lang.Object
-
- org.dmg.pmml.PMMLObject
-
- org.dmg.pmml.time_series.TimeAnchor
-
- All Implemented Interfaces:
java.io.Serializable,HasDisplayName<TimeAnchor>,HasLocator,Visitable
public class TimeAnchor extends PMMLObject implements HasDisplayName<TimeAnchor>
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classTimeAnchor.Type
-
Constructor Summary
Constructors Constructor Description TimeAnchor()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description VisitorActionaccept(Visitor visitor)TimeAnchoraddTimeCycles(TimeCycle... timeCycles)TimeAnchoraddTimeExceptions(TimeException... timeExceptions)java.lang.StringgetDisplayName()java.lang.IntegergetOffset()java.lang.IntegergetStepsize()java.util.List<TimeCycle>getTimeCycles()java.util.List<TimeException>getTimeExceptions()TimeAnchor.TypegetType()booleanhasTimeCycles()booleanhasTimeExceptions()TimeAnchorsetDisplayName(java.lang.String displayName)TimeAnchorsetOffset(java.lang.Integer offset)TimeAnchorsetStepsize(java.lang.Integer stepsize)TimeAnchorsetType(TimeAnchor.Type type)-
Methods inherited from class org.dmg.pmml.PMMLObject
getLocator, getSchemaVersion, getSchemaVersion, hasLocator, setLocator
-
-
-
-
Method Detail
-
getType
public TimeAnchor.Type getType()
-
setType
public TimeAnchor setType(TimeAnchor.Type type)
-
getOffset
public java.lang.Integer getOffset()
-
setOffset
public TimeAnchor setOffset(java.lang.Integer offset)
-
getStepsize
public java.lang.Integer getStepsize()
-
setStepsize
public TimeAnchor setStepsize(java.lang.Integer stepsize)
-
getDisplayName
public java.lang.String getDisplayName()
- Specified by:
getDisplayNamein interfaceHasDisplayName<TimeAnchor>
-
setDisplayName
public TimeAnchor setDisplayName(java.lang.String displayName)
- Specified by:
setDisplayNamein interfaceHasDisplayName<TimeAnchor>
-
hasTimeCycles
public boolean hasTimeCycles()
-
getTimeCycles
public java.util.List<TimeCycle> getTimeCycles()
-
addTimeCycles
public TimeAnchor addTimeCycles(TimeCycle... timeCycles)
-
hasTimeExceptions
public boolean hasTimeExceptions()
-
getTimeExceptions
public java.util.List<TimeException> getTimeExceptions()
-
addTimeExceptions
public TimeAnchor addTimeExceptions(TimeException... timeExceptions)
-
accept
public VisitorAction accept(Visitor visitor)
-
-