58596061626364
public class PatriciaTrie<E> extends AbstractPatriciaTrie<String, E> implements Trie<String, E> { private static final long serialVersionUID = 4446367780901817838L; public PatriciaTrie() { super(new StringKeyAnalyzer()); }
62636465666768
public PatriciaTrie() { super(new StringKeyAnalyzer()); } public PatriciaTrie(final Map<? extends String, ? extends E> m) { super(new StringKeyAnalyzer(), m); }
57585960616263
public class PatriciaTrie<E> extends AbstractPatriciaTrie<String, E> { private static final long serialVersionUID = 4446367780901817838L; public PatriciaTrie() { super(new StringKeyAnalyzer()); }
61626364656667