Class PMML
- java.lang.Object
-
- weka.core.pmml.jaxbbindings.PMML
-
public class PMML extends java.lang.ObjectJava class for PMML element declaration.
The following schema fragment specifies the expected content contained within this class.
<element name="PMML"> <complexType> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element ref="{http://www.dmg.org/PMML-4_1}Header"/> <element ref="{http://www.dmg.org/PMML-4_1}MiningBuildTask" minOccurs="0"/> <element ref="{http://www.dmg.org/PMML-4_1}DataDictionary"/> <element ref="{http://www.dmg.org/PMML-4_1}TransformationDictionary" minOccurs="0"/> <sequence maxOccurs="unbounded" minOccurs="0"> <group ref="{http://www.dmg.org/PMML-4_1}MODEL-ELEMENT"/> </sequence> <element ref="{http://www.dmg.org/PMML-4_1}Extension" maxOccurs="unbounded" minOccurs="0"/> </sequence> <attribute name="version" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> </restriction> </complexContent> </complexType> </element>
-
-
Constructor Summary
Constructors Constructor Description PMML()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaddAssociationModelOrBaselineModelOrClusteringModes(java.lang.Object object)java.util.List<java.lang.Object>getAssociationModelOrBaselineModelOrClusteringModels()Gets the value of the associationModelOrBaselineModelOrClusteringModel property.DataDictionarygetDataDictionary()Gets the value of the dataDictionary property.java.util.List<Extension>getExtension()Gets the value of the extension property.HeadergetHeader()Gets the value of the header property.MiningBuildTaskgetMiningBuildTask()Gets the value of the miningBuildTask property.TransformationDictionarygetTransformationDictionary()Gets the value of the transformationDictionary property.java.lang.StringgetVersion()Gets the value of the version property.voidsetDataDictionary(DataDictionary value)Sets the value of the dataDictionary property.voidsetHeader(Header value)Sets the value of the header property.voidsetMiningBuildTask(MiningBuildTask value)Sets the value of the miningBuildTask property.voidsetTransformationDictionary(TransformationDictionary value)Sets the value of the transformationDictionary property.voidsetVersion(java.lang.String value)Sets the value of the version property.
-
-
-
Method Detail
-
getHeader
public Header getHeader()
Gets the value of the header property.- Returns:
- possible object is
Header
-
setHeader
public void setHeader(Header value)
Sets the value of the header property.- Parameters:
value- allowed object isHeader
-
getMiningBuildTask
public MiningBuildTask getMiningBuildTask()
Gets the value of the miningBuildTask property.- Returns:
- possible object is
MiningBuildTask
-
setMiningBuildTask
public void setMiningBuildTask(MiningBuildTask value)
Sets the value of the miningBuildTask property.- Parameters:
value- allowed object isMiningBuildTask
-
getDataDictionary
public DataDictionary getDataDictionary()
Gets the value of the dataDictionary property.- Returns:
- possible object is
DataDictionary
-
setDataDictionary
public void setDataDictionary(DataDictionary value)
Sets the value of the dataDictionary property.- Parameters:
value- allowed object isDataDictionary
-
getTransformationDictionary
public TransformationDictionary getTransformationDictionary()
Gets the value of the transformationDictionary property.- Returns:
- possible object is
TransformationDictionary
-
setTransformationDictionary
public void setTransformationDictionary(TransformationDictionary value)
Sets the value of the transformationDictionary property.- Parameters:
value- allowed object isTransformationDictionary
-
getAssociationModelOrBaselineModelOrClusteringModels
public java.util.List<java.lang.Object> getAssociationModelOrBaselineModelOrClusteringModels()
Gets the value of the associationModelOrBaselineModelOrClusteringModel 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
setmethod for the associationModelOrBaselineModelOrClusteringModel property.For example, to add a new item, do as follows:
getAssociationModelOrBaselineModelOrClusteringModel().add(newItem);Objects of the following type(s) are allowed in the list
TreeModelAssociationModelSupportVectorMachineModelTimeSeriesModelClusteringModelTextModelNeuralNetworkBaselineModelGeneralRegressionModelNearestNeighborModelNaiveBayesModelMiningModelSequenceModelScorecardRuleSetModelRegressionModel
-
addAssociationModelOrBaselineModelOrClusteringModes
public void addAssociationModelOrBaselineModelOrClusteringModes(java.lang.Object object)
-
getExtension
public java.util.List<Extension> getExtension()
Gets the value of the extension 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
setmethod for the extension property.For example, to add a new item, do as follows:
getExtension().add(newItem);Objects of the following type(s) are allowed in the list
Extension
-
getVersion
public java.lang.String getVersion()
Gets the value of the version property.- Returns:
- possible object is
String
-
setVersion
public void setVersion(java.lang.String value)
Sets the value of the version property.- Parameters:
value- allowed object isString
-
-