Package org.kie.dmn.core.pmml
Class PMMLModelInfo
- java.lang.Object
-
- org.kie.dmn.core.pmml.PMMLModelInfo
-
- Direct Known Subclasses:
DMNPMMLModelInfo
public class PMMLModelInfo extends Object
-
-
Field Summary
Fields Modifier and Type Field Description protected StringclassNameprotected Collection<String>inputFieldNamesprotected Stringnameprotected Collection<String>outputFieldNamesprotected Collection<String>targetFieldNames
-
Constructor Summary
Constructors Constructor Description PMMLModelInfo(String name, String className, Collection<String> inputFieldNames, Collection<String> targetFieldNames, Collection<String> outputFieldNames)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetClassName()Collection<String>getInputFieldNames()StringgetName()Collection<String>getOutputFieldNames()Collection<String>getTargetFieldNames()
-
-
-
Field Detail
-
name
protected final String name
-
className
protected final String className
-
inputFieldNames
protected final Collection<String> inputFieldNames
-
outputFieldNames
protected final Collection<String> outputFieldNames
-
targetFieldNames
protected final Collection<String> targetFieldNames
-
-
Constructor Detail
-
PMMLModelInfo
public PMMLModelInfo(String name, String className, Collection<String> inputFieldNames, Collection<String> targetFieldNames, Collection<String> outputFieldNames)
-
-
Method Detail
-
getName
public String getName()
-
getClassName
public String getClassName()
-
getInputFieldNames
public Collection<String> getInputFieldNames()
-
getOutputFieldNames
public Collection<String> getOutputFieldNames()
-
getTargetFieldNames
public Collection<String> getTargetFieldNames()
-
-