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 K
baseToDerived
(BK key) Transforms a key from the base map to a key in this map.boolean
containsKey
(Object key) Returnstrue
if this map contains a mapping for the specified key.boolean
containsValue
(Object value) Returnstrue
if this map maps one or more keys to this value.protected abstract BK
derivedToBase
(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.boolean
isEmpty()
Returnstrue
if 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.int
size()
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()Returnstrue
if this map contains no key-value mappings. -
containsValue
Returnstrue
if this map maps one or more keys to this value. The default implementation invokesbase.containsValue(value)
.- Specified by:
containsValue
in interfaceMap<BK,
K> - Overrides:
containsValue
in classAbstractMap<K,
V> - Returns:
true
if this map maps one or more keys to this value.
-
containsKey
Returnstrue
if this map contains a mapping for the specified key. The default implementation invokesbase.containsKey(derivedToBase(key))
.- Specified by:
containsKey
in interfaceMap<BK,
K> - Overrides:
containsKey
in classAbstractMap<K,
V> - Parameters:
key
- key whose presence in this map is to be tested.- Returns:
true
if 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:
put
in interfaceMap<BK,
K> - Overrides:
put
in 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
null
if there was no mapping for key. - Throws:
UnsupportedOperationException
- if the base map doesn't supports theput
operation.
-
remove
Removes the mapping for this key from this map if present. The default implementation invokesbase.remove(derivedToBase(key))
.- Specified by:
remove
in interfaceMap<BK,
K> - Overrides:
remove
in classAbstractMap<K,
V> - Parameters:
key
- key whose mapping is to be removed from the map.- Returns:
- previous value associated with specified key, or
null
if there was no entry for key. - Throws:
UnsupportedOperationException
- if the base map doesn't supports theremove
operation.
-
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.
-