Class WrappedMap<K,V>
- java.lang.Object
-
- org.processmining.specpp.componenting.delegators.AbstractDelegator<java.util.Map<K,V>>
-
- org.processmining.specpp.datastructures.util.WrappedMap<K,V>
-
- All Implemented Interfaces:
java.util.Map<K,V>,Evaluable,Container<java.util.Map<K,V>>,Delegator<java.util.Map<K,V>>,Parameters,PrettyPrintable,ProperlyPrintable
public class WrappedMap<K,V> extends AbstractDelegator<java.util.Map<K,V>> implements java.util.Map<K,V>, Parameters, Evaluable
-
-
Field Summary
-
Fields inherited from class org.processmining.specpp.componenting.delegators.AbstractDelegator
delegate
-
-
Constructor Summary
Constructors Constructor Description WrappedMap()WrappedMap(java.util.Map<K,V> delegate)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclear()Vcompute(K key, java.util.function.BiFunction<? super K,? super V,? extends V> remappingFunction)VcomputeIfAbsent(K key, java.util.function.Function<? super K,? extends V> mappingFunction)VcomputeIfPresent(K key, java.util.function.BiFunction<? super K,? super V,? extends V> remappingFunction)booleancontainsKey(java.lang.Object key)booleancontainsValue(java.lang.Object value)java.util.Set<java.util.Map.Entry<K,V>>entrySet()booleanequals(java.lang.Object o)voidforEach(java.util.function.BiConsumer<? super K,? super V> action)Vget(java.lang.Object key)VgetOrDefault(java.lang.Object key, V defaultValue)inthashCode()booleanisEmpty()java.util.Set<K>keySet()Vmerge(K key, V value, java.util.function.BiFunction<? super V,? super V,? extends V> remappingFunction)Vput(K key, V value)voidputAll(java.util.Map<? extends K,? extends V> m)VputIfAbsent(K key, V value)Vremove(java.lang.Object key)booleanremove(java.lang.Object key, java.lang.Object value)Vreplace(K key, V value)booleanreplace(K key, V oldValue, V newValue)voidreplaceAll(java.util.function.BiFunction<? super K,? super V,? extends V> function)intsize()java.util.Collection<V>values()-
Methods inherited from class org.processmining.specpp.componenting.delegators.AbstractDelegator
getDelegate, isSet, setDelegate, toString
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.processmining.specpp.componenting.delegators.Container
isNonEmpty
-
Methods inherited from interface org.processmining.specpp.componenting.delegators.Delegator
addContent, isFull
-
Methods inherited from interface org.processmining.specpp.config.parameters.Parameters
toPrettyString
-
Methods inherited from interface org.processmining.specpp.traits.ProperlyPrintable
toString
-
-
-
-
Method Detail
-
isEmpty
public boolean isEmpty()
-
containsKey
public boolean containsKey(java.lang.Object key)
-
containsValue
public boolean containsValue(java.lang.Object value)
-
values
public java.util.Collection<V> values()
-
equals
public boolean equals(java.lang.Object o)
-
hashCode
public int hashCode()
-
replaceAll
public void replaceAll(java.util.function.BiFunction<? super K,? super V,? extends V> function)
-
remove
public boolean remove(java.lang.Object key, java.lang.Object value)
-
computeIfAbsent
public V computeIfAbsent(K key, java.util.function.Function<? super K,? extends V> mappingFunction)
-
computeIfPresent
public V computeIfPresent(K key, java.util.function.BiFunction<? super K,? super V,? extends V> remappingFunction)
-
compute
public V compute(K key, java.util.function.BiFunction<? super K,? super V,? extends V> remappingFunction)
-
-