Package | Description |
---|---|
org.apache.commons.collections4 |
This package contains the interfaces and utilities shared across all the subpackages of this component.
|
org.apache.commons.collections4.trie |
This package contains implementations of the
Trie interface. |
Modifier and Type | Method and Description |
---|---|
static <K,V> Trie<K,V> |
TrieUtils.unmodifiableTrie(Trie<K,? extends V> trie)
Returns an unmodifiable instance of a
Trie |
Modifier and Type | Method and Description |
---|---|
static <K,V> Trie<K,V> |
TrieUtils.unmodifiableTrie(Trie<K,? extends V> trie)
Returns an unmodifiable instance of a
Trie |
Modifier and Type | Class and Description |
---|---|
class |
AbstractBitwiseTrie<K,V>
|
class |
PatriciaTrie<E>
Implementation of a PATRICIA Trie (Practical Algorithm to Retrieve Information
Coded in Alphanumeric).
|
class |
UnmodifiableTrie<K,V>
An unmodifiable
Trie . |
Modifier and Type | Method and Description |
---|---|
static <K,V> Trie<K,V> |
UnmodifiableTrie.unmodifiableTrie(Trie<K,? extends V> trie)
Factory method to create a unmodifiable trie.
|
Modifier and Type | Method and Description |
---|---|
static <K,V> Trie<K,V> |
UnmodifiableTrie.unmodifiableTrie(Trie<K,? extends V> trie)
Factory method to create a unmodifiable trie.
|
Constructor and Description |
---|
UnmodifiableTrie(Trie<K,? extends V> trie)
Constructor that wraps (not copies).
|
Copyright © 2001–2018 The Apache Software Foundation. All rights reserved.