Uses of Class
org.apache.commons.collections4.trie.KeyAnalyzer
-
Packages that use KeyAnalyzer Package Description org.apache.commons.collections4.trie This package contains implementations of theTrie
interface.org.apache.commons.collections4.trie.analyzer This package contains variousKeyAnalyzer
implementations. -
-
Uses of KeyAnalyzer in org.apache.commons.collections4.trie
Fields in org.apache.commons.collections4.trie declared as KeyAnalyzer Modifier and Type Field Description private KeyAnalyzer<? super K>
AbstractBitwiseTrie. keyAnalyzer
TheKeyAnalyzer
that's being used to build the PATRICIATrie
.Methods in org.apache.commons.collections4.trie that return KeyAnalyzer Modifier and Type Method Description protected KeyAnalyzer<? super K>
AbstractBitwiseTrie. getKeyAnalyzer()
Returns theKeyAnalyzer
that constructed theTrie
.Constructors in org.apache.commons.collections4.trie with parameters of type KeyAnalyzer Constructor Description AbstractBitwiseTrie(KeyAnalyzer<? super K> keyAnalyzer)
Constructs a newTrie
using the givenKeyAnalyzer
.AbstractPatriciaTrie(KeyAnalyzer<? super K> keyAnalyzer)
AbstractPatriciaTrie(KeyAnalyzer<? super K> keyAnalyzer, java.util.Map<? extends K,? extends V> map)
Constructs a neworg.apache.commons.collections4.Trie Trie
using the givenKeyAnalyzer
and initializes theTrie
with the values from the providedMap
. -
Uses of KeyAnalyzer in org.apache.commons.collections4.trie.analyzer
Subclasses of KeyAnalyzer in org.apache.commons.collections4.trie.analyzer Modifier and Type Class Description class
StringKeyAnalyzer
AnKeyAnalyzer
forString
s.
-