Class UnmodifiableTrie<K,V>
- java.lang.Object
-
- org.apache.commons.collections4.trie.UnmodifiableTrie<K,V>
-
- Type Parameters:
K- the type of the keys in this mapV- the type of the values in this map
- All Implemented Interfaces:
java.io.Serializable,java.util.Map<K,V>,java.util.SortedMap<K,V>,Get<K,V>,IterableGet<K,V>,IterableMap<K,V>,IterableSortedMap<K,V>,OrderedMap<K,V>,Put<K,V>,Trie<K,V>,Unmodifiable
public class UnmodifiableTrie<K,V> extends java.lang.Object implements Trie<K,V>, java.io.Serializable, Unmodifiable
An unmodifiableTrie.- Since:
- 4.0
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description UnmodifiableTrie(Trie<K,? extends V> trie)Constructor that wraps (not copies).
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclear()Removes all of the mappings from this map.java.util.Comparator<? super K>comparator()booleancontainsKey(java.lang.Object key)Tests for presence of a given key.booleancontainsValue(java.lang.Object value)Tests for presence of a given value.java.util.Set<java.util.Map.Entry<K,V>>entrySet()Gets a set view of the mappings contained in this map.booleanequals(java.lang.Object obj)KfirstKey()Gets the first key currently in this map.Vget(java.lang.Object key)Gets a value at a given key.inthashCode()java.util.SortedMap<K,V>headMap(K toKey)booleanisEmpty()Tests whether this instance contains any key-value mappings.java.util.Set<K>keySet()Gets a view of the keys contained in this map.KlastKey()Gets the last key currently in this map.OrderedMapIterator<K,V>mapIterator()Obtains anOrderedMapIteratorover the map.KnextKey(K key)Gets the next key after the one specified.java.util.SortedMap<K,V>prefixMap(K key)Returns a view of thisTrieof all elements that are prefixed by the given key.KpreviousKey(K key)Gets the previous key before the one specified.Vput(K key, V value)Associates the specified value with the specified key in this map.voidputAll(java.util.Map<? extends K,? extends V> m)Copies all of the mappings from the specified map to this map.Vremove(java.lang.Object key)Remove a key-value mappings.intsize()Gets the number of key-value mappings in this map.java.util.SortedMap<K,V>subMap(K fromKey, K toKey)java.util.SortedMap<K,V>tailMap(K fromKey)java.lang.StringtoString()static <K,V>
Trie<K,V>unmodifiableTrie(Trie<K,? extends V> trie)Factory method to create an unmodifiable trie.java.util.Collection<V>values()Gets a a collection view of the values contained in this map.
-
-
-
Constructor Detail
-
UnmodifiableTrie
public UnmodifiableTrie(Trie<K,? extends V> trie)
Constructor that wraps (not copies).- Parameters:
trie- the trie to decorate, must not be null- Throws:
java.lang.NullPointerException- if trie is null
-
-
Method Detail
-
unmodifiableTrie
public static <K,V> Trie<K,V> unmodifiableTrie(Trie<K,? extends V> trie)
Factory method to create an unmodifiable trie.- Type Parameters:
K- the key typeV- the value type- Parameters:
trie- the trie to decorate, must not be null- Returns:
- a new unmodifiable trie
- Throws:
java.lang.NullPointerException- if trie is null
-
clear
public void clear()
Description copied from interface:PutRemoves all of the mappings from this map.
-
comparator
public java.util.Comparator<? super K> comparator()
-
containsKey
public boolean containsKey(java.lang.Object key)
Description copied from interface:GetTests for presence of a given key.
-
containsValue
public boolean containsValue(java.lang.Object value)
Description copied from interface:GetTests for presence of a given value.
-
entrySet
public java.util.Set<java.util.Map.Entry<K,V>> entrySet()
Description copied from interface:GetGets a set view of the mappings contained in this map.
-
equals
public boolean equals(java.lang.Object obj)
-
firstKey
public K firstKey()
Description copied from interface:OrderedMapGets the first key currently in this map.
-
get
public V get(java.lang.Object key)
Description copied from interface:GetGets a value at a given key.
-
hashCode
public int hashCode()
-
isEmpty
public boolean isEmpty()
Description copied from interface:GetTests whether this instance contains any key-value mappings.
-
keySet
public java.util.Set<K> keySet()
Description copied from interface:GetGets a view of the keys contained in this map.
-
lastKey
public K lastKey()
Description copied from interface:OrderedMapGets the last key currently in this map.
-
mapIterator
public OrderedMapIterator<K,V> mapIterator()
Description copied from interface:OrderedMapObtains anOrderedMapIteratorover the map.An ordered map iterator is an efficient way of iterating over maps in both directions.
- Specified by:
mapIteratorin interfaceIterableGet<K,V>- Specified by:
mapIteratorin interfaceOrderedMap<K,V>- Returns:
- a map iterator
-
nextKey
public K nextKey(K key)
Description copied from interface:OrderedMapGets the next key after the one specified.- Specified by:
nextKeyin interfaceOrderedMap<K,V>- Parameters:
key- the key to search for next from- Returns:
- the next key, null if no match or at end
-
prefixMap
public java.util.SortedMap<K,V> prefixMap(K key)
Description copied from interface:TrieReturns a view of thisTrieof all elements that are prefixed by the given key.In a
Triewith fixed size keys, this is essentially aMap.get(Object)operation.For example, if the
Triecontains 'Anna', 'Anael', 'Analu', 'Andreas', 'Andrea', 'Andres', and 'Anatole', then a lookup of 'And' would return 'Andreas', 'Andrea', and 'Andres'.
-
previousKey
public K previousKey(K key)
Description copied from interface:OrderedMapGets the previous key before the one specified.- Specified by:
previousKeyin interfaceOrderedMap<K,V>- Parameters:
key- the key to search for previous from- Returns:
- the previous key, null if no match or at start
-
put
public V put(K key, V value)
Description copied from interface:PutAssociates the specified value with the specified key in this map.Note that the return type is Object, rather than V as in the Map interface. See the class Javadoc for further info.
- Specified by:
putin interfacejava.util.Map<K,V>- Specified by:
putin interfacePut<K,V>- Parameters:
key- key with which the specified value is to be associatedvalue- value to be associated with the specified key- Returns:
- the previous value associated with
key, ornullif there was no mapping forkey. (Anullreturn can also indicate that the map previously associatednullwithkey, if the implementation supportsnullvalues.) - See Also:
Map.put(Object, Object)
-
putAll
public void putAll(java.util.Map<? extends K,? extends V> m)
Description copied from interface:PutCopies all of the mappings from the specified map to this map.
-
remove
public V remove(java.lang.Object key)
Description copied from interface:GetRemove a key-value mappings.
-
size
public int size()
Description copied from interface:GetGets the number of key-value mappings in this map.
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
-