Uses of Class
org.processmining.models.graphbased.directed.utils.Node
-
Packages that use Node Package Description org.processmining.models.graphbased.directed.utils -
-
Uses of Node in org.processmining.models.graphbased.directed.utils
Methods in org.processmining.models.graphbased.directed.utils that return Node Modifier and Type Method Description Node<T>
Node. getParent()
Methods in org.processmining.models.graphbased.directed.utils that return types with arguments of type Node Modifier and Type Method Description java.util.List<Node<T>>
Node. getChildren()
Return the children of Node. Methods in org.processmining.models.graphbased.directed.utils with parameters of type Node Modifier and Type Method Description void
Node. addChild(Node<T> child)
Adds a child to the list of children for this Node. void
Node. insertChildAt(int index, Node<T> child)
Inserts a Nodeat the specified position in the child list. void
Node. setParent(Node<T> parent)
Method parameters in org.processmining.models.graphbased.directed.utils with type arguments of type Node Modifier and Type Method Description void
Node. setChildren(java.util.List<Node<T>> children)
Sets the children of a Nodeobject.
-