- Enclosing class:
- Trie
public class Trie.TrieBranch
extends Trie.TrieNode
A TrieNode implementation representing a branch in the tree. The
class maintains a list of characters (the next character in the
prefix) and associated children TrieNodes for each.