Package org.jpmml.evaluator.tree
Interface HasDecisionPath
-
- All Superinterfaces:
HasEntityId,ResultFeature
- All Known Implementing Classes:
NodeScore,NodeScoreDistribution,NodeVote
public interface HasDecisionPath extends HasEntityId
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<org.dmg.pmml.tree.Node>getDecisionPath()Gets the decision path from theroot node(first element) to the winning node (last element).org.dmg.pmml.tree.NodegetNode()Gets the winning node.-
Methods inherited from interface org.jpmml.evaluator.HasEntityId
getEntityId
-
-
-
-
Method Detail
-
getNode
org.dmg.pmml.tree.Node getNode()
Gets the winning node.
-
getDecisionPath
List<org.dmg.pmml.tree.Node> getDecisionPath()
Gets the decision path from the
root node(first element) to the winning node (last element).
-
-