public interface Trie<K,V> extends IterableSortedMap<K,V>
| Modifier and Type | Method and Description | 
|---|---|
| SortedMap<K,V> | prefixMap(K key)Returns a view of this  Trieof all elements that are prefixed
 by the given key. | 
comparator, entrySet, firstKey, headMap, keySet, lastKey, subMap, tailMap, valuesfirstKey, lastKey, mapIterator, nextKey, previousKeyclear, containsKey, containsValue, equals, get, hashCode, isEmpty, put, putAll, remove, sizecontainsKey, containsValue, entrySet, get, isEmpty, keySet, remove, size, valuesSortedMap<K,V> prefixMap(K key)
Trie of all elements that are prefixed
 by the given key.
 
 In a Trie with fixed size keys, this is essentially a
 Map.get(Object) operation.
 
 For example, if the Trie contains 'Anna', 'Anael',
 'Analu', 'Andreas', 'Andrea', 'Andres', and 'Anatole', then
 a lookup of 'And' would return 'Andreas', 'Andrea', and 'Andres'.
Copyright © 2001–2013 The Apache Software Foundation. All rights reserved.