Package org.jpmml.evaluator.tree
Interface HasNodeRegistry
-
- All Superinterfaces:
HasEntityRegistry<org.dmg.pmml.tree.Node>
- All Known Implementing Classes:
ComplexTreeModelEvaluator
public interface HasNodeRegistry extends HasEntityRegistry<org.dmg.pmml.tree.Node>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.List<org.dmg.pmml.tree.Node>getPath(java.lang.String id)java.util.List<org.dmg.pmml.tree.Node>getPathBetween(java.lang.String parentId, java.lang.String childId)-
Methods inherited from interface org.jpmml.evaluator.HasEntityRegistry
getEntityRegistry
-
-
-
-
Method Detail
-
getPath
java.util.List<org.dmg.pmml.tree.Node> getPath(java.lang.String id)
- Returns:
- A path from the
root nodeto the specified node.
-
getPathBetween
java.util.List<org.dmg.pmml.tree.Node> getPathBetween(java.lang.String parentId, java.lang.String childId)- Returns:
- A path from the parent node to the child node.
-
-