Uses of Class
org.processmining.rootcauseanalysis.models.graph.Node
-
Packages that use Node Package Description org.processmining.rootcauseanalysis.models.graph -
-
Uses of Node in org.processmining.rootcauseanalysis.models.graph
Methods in org.processmining.rootcauseanalysis.models.graph that return Node Modifier and Type Method Description NodeGraph. addNode(Node node)NodeNode. clone()NodeEdge. getSource()NodeEdge. getTarget()Methods in org.processmining.rootcauseanalysis.models.graph that return types with arguments of type Node Modifier and Type Method Description java.util.Set<Node>Graph. getNodes()Methods in org.processmining.rootcauseanalysis.models.graph with parameters of type Node Modifier and Type Method Description NodeGraph. addNode(Node node)booleanGraph. ancestor(Node child, Node parent)Checks whether there exists an ancestry relationship between two nodes (unidirectional).java.util.Set<Edge>Graph. getEdges(Node node)Returns all edges in this graph for which the specified node is either the source or the target node.java.util.Set<Edge>Graph. getEdges(Node node, boolean source, boolean target)Returns all edges in this graph for which the specified node is either the source of the target node, depending on the specified flags.voidEdge. setSource(Node source)voidEdge. setTarget(Node target)Method parameters in org.processmining.rootcauseanalysis.models.graph with type arguments of type Node Modifier and Type Method Description voidGraph. setNodes(java.util.Set<Node> nodes)Constructors in org.processmining.rootcauseanalysis.models.graph with parameters of type Node Constructor Description Edge(Node source, Node target)Edge(Node source, Node target, java.lang.String label)
-