Uses of Interface
edu.wisc.ssec.mcidasv.util.trie.PatriciaTrie.KeyAnalyzer

Packages that use PatriciaTrie.KeyAnalyzer
edu.wisc.ssec.mcidasv.util.trie   
 

Uses of PatriciaTrie.KeyAnalyzer in edu.wisc.ssec.mcidasv.util.trie
 

Classes in edu.wisc.ssec.mcidasv.util.trie that implement PatriciaTrie.KeyAnalyzer
 class AddeEntryKeyAnalyzer
           
 class CharSequenceKeyAnalyzer
          Analyzes CharSequence keys with case sensitivity.
 class StringListKeyAnalyzer
           
 

Fields in edu.wisc.ssec.mcidasv.util.trie declared as PatriciaTrie.KeyAnalyzer
private  PatriciaTrie.KeyAnalyzer<? super K> PatriciaTrie.keyAnalyzer
          The keyAnalyzer used to analyze bit values of keys.
 

Methods in edu.wisc.ssec.mcidasv.util.trie that return PatriciaTrie.KeyAnalyzer
 PatriciaTrie.KeyAnalyzer<? super K> PatriciaTrie.getKeyAnalyzer()
          Returns the KeyAnalyzer that constructed the trie.
 

Constructors in edu.wisc.ssec.mcidasv.util.trie with parameters of type PatriciaTrie.KeyAnalyzer
PatriciaTrie(PatriciaTrie.KeyAnalyzer<? super K> keyAnalyzer)
          Constructs a new PatriciaTrie using the given keyAnalyzer.