Uses of Interface
org.apache.commons.collections4.Trie
Package
Description
Interfaces and utilities shared across all packages.
Implements the
Trie
interface.-
Uses of Trie in org.apache.commons.collections4
Modifier and TypeMethodDescriptionstatic <K,
V> Trie<K, V> TrieUtils.unmodifiableTrie
(Trie<K, ? extends V> trie) Returns an unmodifiable instance of aTrie
Modifier and TypeMethodDescriptionstatic <K,
V> Trie<K, V> TrieUtils.unmodifiableTrie
(Trie<K, ? extends V> trie) Returns an unmodifiable instance of aTrie
-
Uses of Trie in org.apache.commons.collections4.trie
Modifier and TypeClassDescriptionclass
AbstractBitwiseTrie<K,
V> class
AbstractPatriciaTrie<K,
V> This class implements the base PATRICIA algorithm and everything that is related to theMap
interface.class
PatriciaTrie<V>
Implements a PATRICIA Trie (Practical Algorithm to Retrieve Information Coded in Alphanumeric).class
UnmodifiableTrie<K,
V> An unmodifiableTrie
.Modifier and TypeMethodDescriptionstatic <K,
V> Trie<K, V> UnmodifiableTrie.unmodifiableTrie
(Trie<K, ? extends V> trie) Factory method to create an unmodifiable trie.Modifier and TypeMethodDescriptionstatic <K,
V> Trie<K, V> UnmodifiableTrie.unmodifiableTrie
(Trie<K, ? extends V> trie) Factory method to create an unmodifiable trie.ModifierConstructorDescriptionUnmodifiableTrie
(Trie<K, ? extends V> trie) Constructor that wraps (not copies).