Uses of Interface
org.apache.commons.collections4.Trie
Packages that use Trie
Package
Description
This package contains the interfaces and utilities shared across all the subpackages of this component.
This package contains implementations of the
Trie
interface.-
Uses of Trie in org.apache.commons.collections4
Methods in org.apache.commons.collections4 that return TrieModifier and TypeMethodDescriptionstatic <K,
V> Trie<K, V> TrieUtils.unmodifiableTrie
(Trie<K, ? extends V> trie) Returns an unmodifiable instance of aTrie
Methods in org.apache.commons.collections4 with parameters of type TrieModifier 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
Classes in org.apache.commons.collections4.trie that implement TrieModifier and TypeClassDescriptionclass
AbstractBitwiseTrie<K,
V> class
PatriciaTrie<E>
Implementation of a PATRICIA Trie (Practical Algorithm to Retrieve Information Coded in Alphanumeric).class
UnmodifiableTrie<K,
V> An unmodifiableTrie
.Methods in org.apache.commons.collections4.trie that return TrieModifier and TypeMethodDescriptionstatic <K,
V> Trie<K, V> UnmodifiableTrie.unmodifiableTrie
(Trie<K, ? extends V> trie) Factory method to create a unmodifiable trie.Methods in org.apache.commons.collections4.trie with parameters of type TrieModifier and TypeMethodDescriptionstatic <K,
V> Trie<K, V> UnmodifiableTrie.unmodifiableTrie
(Trie<K, ? extends V> trie) Factory method to create a unmodifiable trie.Constructors in org.apache.commons.collections4.trie with parameters of type TrieModifierConstructorDescriptionUnmodifiableTrie
(Trie<K, ? extends V> trie) Constructor that wraps (not copies).