Package org.geotools.util
Class DerivedMap<BK,K,V>
Object
AbstractMap<K,V>
DerivedMap<BK,K,V>
- Type Parameters:
BK- The type of keys in the backing map.K- The type of keys in this map.V- The type of values in both this map and the underlying map.
- All Implemented Interfaces:
Serializable,Map<K,V>
A map whose keys are derived from an other map. The keys are derived only when requested, which make it possible to
backup potentially large maps. Implementations need only to overrides
baseToDerived(BK) and
derivedToBase(K) methods. This set do not supports null key, since null is used when no mapping
from base to this exists. This class is serializable if the underlying base set
is serializable too.
This class is not thread-safe. Synchronizations (if wanted) are user's reponsability.
- Since:
- 2.0
- Author:
- Martin Desruisseaux (IRD)
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class AbstractMap
AbstractMap.SimpleEntry<K extends Object,V extends Object>, AbstractMap.SimpleImmutableEntry<K extends Object, V extends Object> -
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionprotected abstract KbaseToDerived(BK key) Transforms a key from the base map to a key in this map.booleancontainsKey(Object key) Returnstrueif this map contains a mapping for the specified key.booleancontainsValue(Object value) Returnstrueif this map maps one or more keys to this value.protected abstract BKderivedToBase(K key) Transforms a key from this derived map to a key in the base map.entrySet()Returns a set view of the mappings contained in this map.Returns the value to which this map maps the specified key.booleanisEmpty()Returnstrueif this map contains no key-value mappings.keySet()Returns a set view of the keys contained in this map.Associates the specified value with the specified key in this map.Removes the mapping for this key from this map if present.intsize()Returns the number of key-value mappings in this map.values()Returns a collection view of the values contained in this map.Methods inherited from interface Map
compute, computeIfAbsent, computeIfPresent, forEach, getOrDefault, merge, putIfAbsent, remove, replace, replace, replaceAll
-
Field Details
-
base
The base map whose keys are derived from.- See Also:
-
-
Constructor Details
-
DerivedMap
Creates a new derived map from the specified base map.- Parameters:
base- The base map.keyType- the type of keys in the derived map.- Since:
- 2.5
-
-
Method Details
-
baseToDerived
Transforms a key from the base map to a key in this map. If there is no key in the derived map for the specified base key, then this method returnsnull.- Parameters:
key- A ley from the base map.- Returns:
- The key that this view should contains instead of
key, ornull.
-
derivedToBase
Transforms a key from this derived map to a key in the base map.- Parameters:
key- A key in this map.- Returns:
- The key stored in the base map.
-
size
public int size()Returns the number of key-value mappings in this map. -
isEmpty
public boolean isEmpty()Returnstrueif this map contains no key-value mappings. -
containsValue
Returnstrueif this map maps one or more keys to this value. The default implementation invokesbase.containsValue(value).- Specified by:
containsValuein interfaceMap<BK,K> - Overrides:
containsValuein classAbstractMap<K,V> - Returns:
trueif this map maps one or more keys to this value.
-
containsKey
Returnstrueif this map contains a mapping for the specified key. The default implementation invokesbase.containsKey(derivedToBase(key)).- Specified by:
containsKeyin interfaceMap<BK,K> - Overrides:
containsKeyin classAbstractMap<K,V> - Parameters:
key- key whose presence in this map is to be tested.- Returns:
trueif this map contains a mapping for the specified key.
-
get
Returns the value to which this map maps the specified key. The default implementation invokesbase.get(derivedToBase(key)). -
put
Associates the specified value with the specified key in this map. The default implementation invokesbase.put(derivedToBase(key), value).- Specified by:
putin interfaceMap<BK,K> - Overrides:
putin classAbstractMap<K,V> - Parameters:
key- key with which the specified value is to be associated.value- value to be associated with the specified key.- Returns:
- previous value associated with specified key, or
nullif there was no mapping for key. - Throws:
UnsupportedOperationException- if the base map doesn't supports theputoperation.
-
remove
Removes the mapping for this key from this map if present. The default implementation invokesbase.remove(derivedToBase(key)).- Specified by:
removein interfaceMap<BK,K> - Overrides:
removein classAbstractMap<K,V> - Parameters:
key- key whose mapping is to be removed from the map.- Returns:
- previous value associated with specified key, or
nullif there was no entry for key. - Throws:
UnsupportedOperationException- if the base map doesn't supports theremoveoperation.
-
keySet
Returns a set view of the keys contained in this map. -
values
Returns a collection view of the values contained in this map. -
entrySet
Returns a set view of the mappings contained in this map.
-