Package org.kie.pmml.pmml_4_2.model.tree
Class TreeNode
- java.lang.Object
-
- org.kie.pmml.pmml_4_2.model.tree.TreeNode
-
public class TreeNode extends Object
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classTreeNode.ScoreDistributions
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object obj)ListgetChildren()MapgetConfidence()StringgetContext()MapgetCounts()StringgetDefaultChld()StringgetId()StringgetParent()intgetRecordCount()ScoreDistributionInfogetWeightedConfidenceWinner(List<TreeNode> childNodes)inthashCode()voidsetChildren(List children)voidsetConfidence(Map confidence)voidsetContext(String context)voidsetCounts(Map counts)voidsetDefaultChld(String defaultChld)voidsetId(String id)voidsetParent(String parent)voidsetRecordCount(int recordCount)StringtoString()
-
-
-
Method Detail
-
getContext
public String getContext()
-
setContext
public void setContext(String context)
-
getId
public String getId()
-
setId
public void setId(String id)
-
getParent
public String getParent()
-
setParent
public void setParent(String parent)
-
getChildren
public List getChildren()
-
setChildren
public void setChildren(List children)
-
getRecordCount
public int getRecordCount()
-
setRecordCount
public void setRecordCount(int recordCount)
-
getCounts
public Map getCounts()
-
setCounts
public void setCounts(Map counts)
-
getConfidence
public Map getConfidence()
-
setConfidence
public void setConfidence(Map confidence)
-
getDefaultChld
public String getDefaultChld()
-
setDefaultChld
public void setDefaultChld(String defaultChld)
-
getWeightedConfidenceWinner
public ScoreDistributionInfo getWeightedConfidenceWinner(List<TreeNode> childNodes)
-
-