Package | Description |
---|---|
org.apache.commons.collections4.trie |
This package contains implementations of the
Trie interface. |
org.apache.commons.collections4.trie.analyzer |
This package contains various
KeyAnalyzer implementations. |
Modifier and Type | Field and Description |
---|---|
private KeyAnalyzer<? super K> |
AbstractBitwiseTrie.keyAnalyzer
The
KeyAnalyzer that's being used to build the PATRICIA Trie . |
Modifier and Type | Method and Description |
---|---|
protected KeyAnalyzer<? super K> |
AbstractBitwiseTrie.getKeyAnalyzer()
Returns the
KeyAnalyzer that constructed the Trie . |
Constructor and Description |
---|
AbstractBitwiseTrie(KeyAnalyzer<? super K> keyAnalyzer)
Constructs a new
Trie using the given KeyAnalyzer . |
AbstractPatriciaTrie(KeyAnalyzer<? super K> keyAnalyzer) |
AbstractPatriciaTrie(KeyAnalyzer<? super K> keyAnalyzer,
java.util.Map<? extends K,? extends V> map)
Constructs a new
Trie using the given
KeyAnalyzer and initializes the Trie
with the values from the provided Map . |
Modifier and Type | Class and Description |
---|---|
class |
StringKeyAnalyzer
An
KeyAnalyzer for String s. |