Class Trie

java.lang.Object
be.panako.util.Trie

public class Trie extends Object
A trie that can be used for auto completion
  • Field Details

    • children

      protected final Map<Character,Trie> children
    • value

      protected String value
    • terminal

      protected boolean terminal
  • Constructor Details

    • Trie

      public Trie()
  • Method Details