Uses of Class
org.processmining.logfiltering.Juan.trie.Node
-
Packages that use Node Package Description org.processmining.logfiltering.Juan.trie -
-
Uses of Node in org.processmining.logfiltering.Juan.trie
Methods in org.processmining.logfiltering.Juan.trie that return Node Modifier and Type Method Description NodeNode. getParent()Methods in org.processmining.logfiltering.Juan.trie that return types with arguments of type Node Modifier and Type Method Description java.util.stream.Stream<Node>Trie. getLeafNodes(Node node)Return a List containing the Leaf Nodes starting from a node using Recursive Depth-first search (DFS).java.util.List<Node>Trie. getLeafNodesJava7(Node node)Return a List containing the Leaf Nodes starting from a node using Recursive Depth-first search (DFS)Methods in org.processmining.logfiltering.Juan.trie with parameters of type Node Modifier and Type Method Description java.util.stream.Stream<Node>Trie. getLeafNodes(Node node)Return a List containing the Leaf Nodes starting from a node using Recursive Depth-first search (DFS).java.util.List<Node>Trie. getLeafNodesJava7(Node node)Return a List containing the Leaf Nodes starting from a node using Recursive Depth-first search (DFS)voidTrie. initFalse(Node node)Set to unvisited all the Tries's node.java.util.Map<java.lang.String,java.lang.Integer>Trie. RecursiveLevenshteinDistance(Node node, char letter, java.lang.String word, java.util.Vector<java.lang.Integer> previousRow, java.util.Map<java.lang.String,java.lang.Integer> results, int maxDistance)voidNode. setParent(Node parent)
-