Class UnmodifiableOrderedBidiMap<K,V>
java.lang.Object
org.apache.commons.collections4.map.AbstractIterableMap<K,V>
org.apache.commons.collections4.map.AbstractMapDecorator<K,V>
org.apache.commons.collections4.bidimap.AbstractBidiMapDecorator<K,V>
org.apache.commons.collections4.bidimap.AbstractOrderedBidiMapDecorator<K,V>
org.apache.commons.collections4.bidimap.UnmodifiableOrderedBidiMap<K,V>
- Type Parameters:
K- The type of the keys in this mapV- The type of the values in this map
- All Implemented Interfaces:
Map<K,,V> BidiMap<K,,V> Get<K,,V> IterableGet<K,,V> IterableMap<K,,V> OrderedBidiMap<K,,V> OrderedMap<K,,V> Put<K,,V> Unmodifiable
public final class UnmodifiableOrderedBidiMap<K,V>
extends AbstractOrderedBidiMapDecorator<K,V>
implements Unmodifiable
Decorates another
OrderedBidiMap to ensure it can't be altered.
Attempts to modify it will result in an UnsupportedOperationException.
- Since:
- 3.0
-
Nested Class Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoidclear()Always throwsUnsupportedOperationException.entrySet()Gets a set view of the mappings contained in this map.Gets a view of this map where the keys and values are reversed.Gets an unmodifiable view of this map where the keys and values are reversed.keySet()Gets a view of the keys contained in this map.Obtains aMapIteratorover the map.Always throwsUnsupportedOperationException.voidAlways throwsUnsupportedOperationException.Always throwsUnsupportedOperationException.removeValue(Object value) Always throwsUnsupportedOperationException.static <K,V> OrderedBidiMap <K, V> unmodifiableOrderedBidiMap(OrderedBidiMap<? extends K, ? extends V> map) Factory method to create an unmodifiable map.values()Gets a a collection view of the values contained in this map.Methods inherited from class org.apache.commons.collections4.bidimap.AbstractOrderedBidiMapDecorator
decorated, firstKey, lastKey, nextKey, previousKeyMethods inherited from class org.apache.commons.collections4.bidimap.AbstractBidiMapDecorator
getKeyMethods inherited from class org.apache.commons.collections4.map.AbstractMapDecorator
containsKey, containsValue, equals, get, hashCode, isEmpty, size, toStringMethods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface org.apache.commons.collections4.Get
containsKey, containsValue, get, isEmpty, sizeMethods inherited from interface java.util.Map
compute, computeIfAbsent, computeIfPresent, containsKey, containsValue, equals, forEach, get, getOrDefault, hashCode, isEmpty, merge, putIfAbsent, remove, replace, replace, replaceAll, size
-
Method Details
-
unmodifiableOrderedBidiMap
public static <K,V> OrderedBidiMap<K,V> unmodifiableOrderedBidiMap(OrderedBidiMap<? extends K, ? extends V> map) Factory method to create an unmodifiable map.If the map passed in is already unmodifiable, it is returned.
- Type Parameters:
K- The key typeV- The value type- Parameters:
map- The map to decorate, must not be null- Returns:
- An unmodifiable OrderedBidiMap
- Throws:
NullPointerException- if map is null- Since:
- 4.0
-
clear
Always throwsUnsupportedOperationException. -
entrySet
Description copied from interface:GetGets a set view of the mappings contained in this map. -
inverseBidiMap
Description copied from interface:BidiMapGets a view of this map where the keys and values are reversed.Changes to one map will be visible in the other and vice versa. This enables both directions of the map to be accessed as a
Map.Implementations should seek to avoid creating a new object every time this method is called. See
AbstractMap.values()etc. Calling this method on the inverse map should return the original.- Specified by:
inverseBidiMapin interfaceBidiMap<K,V> - Specified by:
inverseBidiMapin interfaceOrderedBidiMap<K,V> - Overrides:
inverseBidiMapin classAbstractOrderedBidiMapDecorator<K,V> - Returns:
- An inverted bidirectional map
-
inverseOrderedBidiMap
Gets an unmodifiable view of this map where the keys and values are reversed.- Returns:
- An inverted unmodifiable bidirectional map
-
keySet
Description copied from interface:GetGets a view of the keys contained in this map. -
mapIterator
Description copied from class:AbstractIterableMapObtains aMapIteratorover the map.A map iterator is an efficient way of iterating over maps. There is no need to access the entry set or use Map Entry objects.
IterableMap<String,Integer> map = new HashedMap<String,Integer>(); MapIterator<String,Integer> it = map.mapIterator(); while (it.hasNext()) { String key = it.next(); Integer value = it.getValue(); it.setValue(value + 1); }- Specified by:
mapIteratorin interfaceIterableGet<K,V> - Specified by:
mapIteratorin interfaceOrderedMap<K,V> - Overrides:
mapIteratorin classAbstractOrderedBidiMapDecorator<K,V> - Returns:
- A map iterator.
-
put
Always throwsUnsupportedOperationException.- Specified by:
putin interfaceBidiMap<K,V> - Specified by:
putin interfaceMap<K,V> - Specified by:
putin interfacePut<K,V> - Overrides:
putin classAbstractMapDecorator<K,V> - Parameters:
key- Ignored.value- Ignored.- 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.) - Throws:
UnsupportedOperationException- Always thrown.- See Also:
-
putAll
Always throwsUnsupportedOperationException. -
remove
Always throwsUnsupportedOperationException.- Specified by:
removein interfaceGet<K,V> - Specified by:
removein interfaceMap<K,V> - Overrides:
removein classAbstractMapDecorator<K,V> - Parameters:
key- Ignored.- Returns:
- The previous value associated with
key, ornullif there was no mapping forkey. - Throws:
UnsupportedOperationException- Always thrown.- See Also:
-
removeValue
Always throwsUnsupportedOperationException.- Specified by:
removeValuein interfaceBidiMap<K,V> - Overrides:
removeValuein classAbstractBidiMapDecorator<K,V> - Parameters:
value- Ignored.- Returns:
- The key that was removed,
nullif nothing removed. - Throws:
UnsupportedOperationException- Always thrown.
-
values
Description copied from interface:GetGets a a collection view of the values contained in this map.
-