K - Dictionary key typeV - Dictionary value typeprivate static class TailScopedDictionary.EmptyTailMap<K,V> extends TailHashMap<K,V>
| Modifier and Type | Field and Description |
|---|---|
private static long |
serialVersionUID
Generated version UID
|
| Modifier | Constructor and Description |
|---|---|
private |
EmptyTailMap() |
| Modifier and Type | Method and Description |
|---|---|
V |
compute(K key,
java.util.function.BiFunction<? super K,? super V,? extends V> remappingFunction)
Attempts to
compute result in an UnsupportedOperationException. |
V |
computeIfAbsent(K key,
java.util.function.Function<? super K,? extends V> mappingFunction)
Attempts to
computeIfAbsent result in an UnsupportedOperationException. |
V |
computeIfPresent(K key,
java.util.function.BiFunction<? super K,? super V,? extends V> remappingFunction)
Attempts to
computeIfPresent result in an UnsupportedOperationException. |
V |
merge(K key,
V value,
java.util.function.BiFunction<? super V,? super V,? extends V> remappingFunction)
Attempts to
merge result in an UnsupportedOperationException. |
V |
put(K key,
V value)
Attempts to
put result in an UnsupportedOperationException. |
void |
putAll(java.util.Map<? extends K,? extends V> m)
Attempts to
putAll result in an UnsupportedOperationException. |
V |
putIfAbsent(K key,
V value)
Attempts to
putIfAbsent result in an UnsupportedOperationException. |
V |
remove(java.lang.Object key)
This is a no-op.
|
boolean |
remove(java.lang.Object key,
java.lang.Object value)
This is a no-op.
|
V |
replace(K key,
V value)
Attempts to
replace result in an UnsupportedOperationException. |
boolean |
replace(K key,
V oldValue,
V newValue)
Attempts to
replace result in an UnsupportedOperationException. |
void |
replaceAll(java.util.function.BiFunction<? super K,? super V,? extends V> function)
Attempts to
replaceAll result in an UnsupportedOperationException. |
flagIterating, isIteratingActive, pop, setIteratingActive, setIteratingActiveSegmentclear, clone, containsKey, containsValue, entrySet, forEach, get, getOrDefault, isEmpty, keySet, size, valuesfinalize, getClass, notify, notifyAll, wait, wait, waitputAtDefaultprivate static final long serialVersionUID
public V remove(java.lang.Object key)
remove will always return null.public void putAll(java.util.Map<? extends K,? extends V> m)
putAll result in an UnsupportedOperationException.public void replaceAll(java.util.function.BiFunction<? super K,? super V,? extends V> function)
replaceAll result in an UnsupportedOperationException.public V putIfAbsent(K key, V value)
putIfAbsent result in an UnsupportedOperationException.public boolean remove(java.lang.Object key,
java.lang.Object value)
remove will always return false.public boolean replace(K key, V oldValue, V newValue)
replace result in an UnsupportedOperationException.public V replace(K key, V value)
replace result in an UnsupportedOperationException.public V computeIfAbsent(K key, java.util.function.Function<? super K,? extends V> mappingFunction)
computeIfAbsent result in an UnsupportedOperationException.public V computeIfPresent(K key, java.util.function.BiFunction<? super K,? super V,? extends V> remappingFunction)
computeIfPresent result in an UnsupportedOperationException.public V compute(K key, java.util.function.BiFunction<? super K,? super V,? extends V> remappingFunction)
compute result in an UnsupportedOperationException.