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 voidNode. addChild(Node<T> child)Adds a child to the list of children for this Node. voidNode. insertChildAt(int index, Node<T> child)Inserts a Nodeat the specified position in the child list. voidNode. setParent(Node<T> parent)Method parameters in org.processmining.models.graphbased.directed.utils with type arguments of type Node Modifier and Type Method Description voidNode. setChildren(java.util.List<Node<T>> children)Sets the children of a Nodeobject.
-