@Deprecated public class SMRMap<K,V> extends HashMap<K,V> implements ISMRMap<K,V>
AbstractMap.SimpleEntry<K,V>, AbstractMap.SimpleImmutableEntry<K,V>
ISMRMap.UndoNullable
Constructor and Description |
---|
SMRMap()
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
V |
compute(K key,
BiFunction<? super K,? super V,? extends V> remappingFunction)
Deprecated.
Attempts to compute a mapping for the specified key and its current
mapped value (or
null if there is no current mapping). |
V |
computeIfAbsent(K key,
Function<? super K,? extends V> mappingFunction)
Deprecated.
If the specified key is not already associated with a value (or is mapped
to
null ), attempts to compute its value using the given mapping
function and enters it into this map unless null . |
V |
computeIfPresent(K key,
BiFunction<? super K,? super V,? extends V> remappingFunction)
Deprecated.
If the value for the specified key is present and non-null, attempts to
compute a new mapping given the key and its current mapped value.
|
Set<Map.Entry<K,V>> |
entrySet()
Deprecated.
Returns a
Set view of the mappings contained in this map. |
void |
forEach(BiConsumer<? super K,? super V> action)
Deprecated.
Performs the given action for each entry in this map until all entries
have been processed or the action throws an exception.
|
V |
getOrDefault(Object key,
V defaultValue)
Deprecated.
Returns the value to which the specified key is mapped, or
defaultValue if this map contains no mapping for the key. |
Set<K> |
keySet()
Deprecated.
Returns a
Set view of the keys contained in this map. |
V |
merge(K key,
V value,
BiFunction<? super V,? super V,? extends V> remappingFunction)
Deprecated.
If the specified key is not already associated with a value or is
associated with null, associates it with the given non-null value.
|
V |
putIfAbsent(K key,
V value)
Deprecated.
If the specified key is not already associated with a value (or is mapped
to
null ) associates it with the given value and returns
null , else returns the current value. |
boolean |
remove(Object key,
Object value)
Deprecated.
Removes the entry for the specified key only if it is currently
mapped to the specified value.
|
V |
replace(K key,
V value)
Deprecated.
Replaces the entry for the specified key only if it is
currently mapped to some value.
|
boolean |
replace(K key,
V oldValue,
V newValue)
Deprecated.
Replaces the entry for the specified key only if currently
mapped to the specified value.
|
void |
replaceAll(BiFunction<? super K,? super V,? extends V> function)
Deprecated.
Replaces each entry's value with the result of invoking the given
function on that entry until all entries have been processed or the
function throws an exception.
|
List<V> |
scanAndFilter(Predicate<? super V> p)
Deprecated.
Returns a filtered
List view of the values contained in this map. |
Collection<Map.Entry<K,V>> |
scanAndFilterByEntry(Predicate<? super Map.Entry<K,V>> entryPredicate)
Deprecated.
Returns a
Collection filtered by entries (keys and/or values). |
Collection<V> |
values()
Deprecated.
Returns a
Collection view of the values contained in this map. |
clear, clone, containsKey, containsValue, get, isEmpty, put, putAll, remove, size
equals, hashCode, toString
equals, finalize, getClass, notify, notifyAll, wait, wait, wait
blindPut, clear, containsKey, containsValue, get, isEmpty, put, putAll, putAllConflictFunction, remove, size, undoPut, undoPutAll, undoPutAllRecord, undoPutRecord, undoRemove, undoRemoveRecord
equals, hashCode, toString
public Set<K> keySet()
Set
view of the keys contained in this map.
It does not support the add or addAll
operations.public Collection<V> values()
Collection
view of the values contained in this map.
It does not support the add or addAll operations.public List<V> scanAndFilter(Predicate<? super V> p)
List
view of the values contained in this map.
This method has a memory/CPU advantage over the map iterators as no deep copy
is actually performed.p
- java predicate (function to evaluate)public Collection<Map.Entry<K,V>> scanAndFilterByEntry(Predicate<? super Map.Entry<K,V>> entryPredicate)
Collection
filtered by entries (keys and/or values).
This method has a memory/CPU advantage over the map iterators as no deep copy
is actually performed.entryPredicate
- java predicate (function to evaluate)public Set<Map.Entry<K,V>> entrySet()
Set
view of the mappings contained in this map.
It does not support the add or addAll operations.public V getOrDefault(Object key, V defaultValue)
defaultValue
if this map contains no mapping for the key.getOrDefault
in interface Map<K,V>
getOrDefault
in class HashMap<K,V>
key
- the key whose associated value is to be returneddefaultValue
- the default mapping of the keydefaultValue
if this map contains no mapping for the keyClassCastException
- if the key is of an inappropriate type for
this map
(optional)NullPointerException
- if the specified key is null and this map
does not permit null keys
(optional)public void forEach(BiConsumer<? super K,? super V> action)
forEach
in interface Map<K,V>
forEach
in class HashMap<K,V>
action
- The action to be performed for each entryNullPointerException
- if the specified action is nullConcurrentModificationException
- if an entry is found to be
removed during iterationpublic void replaceAll(BiFunction<? super K,? super V,? extends V> function)
replaceAll
in interface Map<K,V>
replaceAll
in class HashMap<K,V>
function
- the function to apply to each entryUnsupportedOperationException
- if the set
operation
is not supported by this map's entry set iterator.ClassCastException
- if the class of a replacement value
prevents it from being stored in this mapNullPointerException
- if the specified function is null, or the specified
replacement value is null, and this map does not
permit null valuesClassCastException
- if a replacement value is of an inappropriate
type for this map
(optional)NullPointerException
- if function or a replacement value is null,
and this map does not permit null keys or values
(optional)IllegalArgumentException
- if some property of a replacement value
prevents it from being stored in this map
(optional)ConcurrentModificationException
- if an entry is found to be
removed during iterationpublic V putIfAbsent(K key, V value)
null
) associates it with the given value and returns
null
, else returns the current value.putIfAbsent
in interface Map<K,V>
putIfAbsent
in class HashMap<K,V>
key
- key with which the specified value is to be associatedvalue
- value to be associated with the specified keynull
if there
was no mapping for the key. (A null
return can also indicate that the map
previously associated null
with the key, if the implementation supports
null values.)UnsupportedOperationException
- if the put
operation
is not supported by this map
(optional)ClassCastException
- if the key or value is of an inappropriate
type for this map
(optional)NullPointerException
- if the specified key or value is null,
and this map does not permit null keys or values
(optional)IllegalArgumentException
- if some property of the specified key
or value prevents it from being stored in this map
(optional)public boolean remove(Object key, Object value)
remove
in interface Map<K,V>
remove
in class HashMap<K,V>
key
- key with which the specified value is associatedvalue
- value expected to be associated with the specified keytrue
if the value was removedUnsupportedOperationException
- if the remove
operation
is not supported by this map
(optional)ClassCastException
- if the key or value is of an inappropriate
type for this map
(optional)NullPointerException
- if the specified key or value is null,
and this map does not permit null keys or values
(optional)public boolean replace(K key, V oldValue, V newValue)
replace
in interface Map<K,V>
replace
in class HashMap<K,V>
key
- key with which the specified value is associatedoldValue
- value expected to be associated with the specified keynewValue
- value to be associated with the specified keytrue
if the value was replacedUnsupportedOperationException
- if the put
operation
is not supported by this map
(optional)ClassCastException
- if the class of a specified key or value
prevents it from being stored in this mapNullPointerException
- if a specified key or newValue is null,
and this map does not permit null keys or valuesNullPointerException
- if oldValue is null and this map does not
permit null values
(optional)IllegalArgumentException
- if some property of a specified key
or value prevents it from being stored in this mappublic V replace(K key, V value)
replace
in interface Map<K,V>
replace
in class HashMap<K,V>
key
- key with which the specified value is associatedvalue
- value to be associated with the specified keynull
if there was no mapping for the key.
(A null
return can also indicate that the map
previously associated null
with the key,
if the implementation supports null values.)UnsupportedOperationException
- if the put
operation
is not supported by this map
(optional)ClassCastException
- if the class of the specified key or value
prevents it from being stored in this map
(optional)NullPointerException
- if the specified key or value is null,
and this map does not permit null keys or valuesIllegalArgumentException
- if some property of the specified key
or value prevents it from being stored in this mappublic V computeIfAbsent(K key, Function<? super K,? extends V> mappingFunction)
null
), attempts to compute its value using the given mapping
function and enters it into this map unless null
.
If the function returns null
no mapping is recorded. If
the function itself throws an (unchecked) exception, the
exception is rethrown, and no mapping is recorded. The most
common usage is to construct a new object serving as an initial
mapped value or memoized result, as in:
map.computeIfAbsent(key, k -> new Value(f(k)));
Or to implement a multi-value map, Map<K,Collection<V>>
,
supporting multiple values per key:
map.computeIfAbsent(key, k -> new HashSet<V>()).add(v);
computeIfAbsent
in interface Map<K,V>
computeIfAbsent
in class HashMap<K,V>
key
- key with which the specified value is to be associatedmappingFunction
- the function to compute a valueNullPointerException
- if the specified key is null and this map does not
support null keys, or the mappingFunction
is nullUnsupportedOperationException
- if the put
operation
is not supported by this map
(optional)ClassCastException
- if the class of the specified key or value
prevents it from being stored in this map
(optional)public V computeIfPresent(K key, BiFunction<? super K,? super V,? extends V> remappingFunction)
If the function returns null
, the mapping is removed. If the
function itself throws an (unchecked) exception, the exception is
rethrown, and the current mapping is left unchanged.
computeIfPresent
in interface Map<K,V>
computeIfPresent
in class HashMap<K,V>
key
- key with which the specified value is to be associatedremappingFunction
- the function to compute a valueNullPointerException
- if the specified key is null and
this map does not support null keys, or the
remappingFunction is nullUnsupportedOperationException
- if the put
operation
is not supported by this map
(optional)ClassCastException
- if the class of the specified key or value
prevents it from being stored in this map
(optional)public V compute(K key, BiFunction<? super K,? super V,? extends V> remappingFunction)
null
if there is no current mapping). For
example, to either create or append a String
msg to a value
mapping:
map.compute(key, (k, v) -> (v == null) ? msg : v.concat(msg))
(Method merge()
is often simpler to use for such purposes.)
If the function returns null
, the mapping is removed (or
remains absent if initially absent). If the function itself throws an
(unchecked) exception, the exception is rethrown, and the current mapping
is left unchanged.
compute
in interface Map<K,V>
compute
in class HashMap<K,V>
key
- key with which the specified value is to be associatedremappingFunction
- the function to compute a valueNullPointerException
- if the specified key is null and
this map does not support null keys, or the
remappingFunction is nullUnsupportedOperationException
- if the put
operation
is not supported by this map
(optional)ClassCastException
- if the class of the specified key or value
prevents it from being stored in this map
(optional)public V merge(K key, V value, BiFunction<? super V,? super V,? extends V> remappingFunction)
null
. This
method may be of use when combining multiple mapped values for a key.
For example, to either create or append a String msg
to a
value mapping:
map.merge(key, msg, String::concat)
If the function returns null
the mapping is removed. If the
function itself throws an (unchecked) exception, the exception is
rethrown, and the current mapping is left unchanged.
merge
in interface Map<K,V>
merge
in class HashMap<K,V>
key
- key with which the resulting value is to be associatedvalue
- the non-null value to be merged with the existing value
associated with the key or, if no existing value or a null value
is associated with the key, to be associated with the keyremappingFunction
- the function to recompute a value if presentUnsupportedOperationException
- if the put
operation
is not supported by this map
(optional)ClassCastException
- if the class of the specified key or value
prevents it from being stored in this map
(optional)NullPointerException
- if the specified key is null and this map
does not support null keys or the value or
remappingFunction is nullCopyright © 2019 CorfuDB. All rights reserved.