Package org.naviqore.utils.search
Interface Trie.Node<V>
- Type Parameters:
V- the type of values stored in the node.
public static interface Trie.Node<V>
Node within the Trie structure, containing a list of children and values.
-
Method Summary
-
Method Details
-
getChildren
Retrieves all child nodes of this node.- Returns:
- a list of all child nodes.
-
getValues
Retrieves all values stored in this node.- Returns:
- a list of values stored in this node.
-