Package org.dmg.pmml
Class Constant
- java.lang.Object
-
- org.dmg.pmml.PMMLObject
-
- org.dmg.pmml.Expression
-
- org.dmg.pmml.Constant
-
- All Implemented Interfaces:
java.io.Serializable,HasDataType<Constant>,HasLocator,Visitable
public class Constant extends Expression implements HasDataType<Constant>
- See Also:
- Serialized Form
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description VisitorActionaccept(Visitor visitor)DataTypegetDataType()java.lang.ObjectgetValue()booleanisMissing()ConstantsetDataType(DataType dataType)ConstantsetMissing(java.lang.Boolean missing)ConstantsetValue(java.lang.Object value)-
Methods inherited from class org.dmg.pmml.PMMLObject
getLocator, getSchemaVersion, getSchemaVersion, hasLocator, setLocator
-
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.dmg.pmml.HasDataType
getDataType
-
-
-
-
Method Detail
-
getDataType
public DataType getDataType()
- Specified by:
getDataTypein interfaceHasDataType<Constant>
-
setDataType
public Constant setDataType(DataType dataType)
- Specified by:
setDataTypein interfaceHasDataType<Constant>
-
isMissing
public boolean isMissing()
-
setMissing
public Constant setMissing(java.lang.Boolean missing)
-
getValue
public java.lang.Object getValue()
-
setValue
public Constant setValue(java.lang.Object value)
-
accept
public VisitorAction accept(Visitor visitor)
-
-