Package sc.util
Class BHashMap<K,V>
- java.lang.Object
-
- java.util.AbstractMap<K,V>
-
- java.util.HashMap<K,V>
-
- sc.util.BHashMap<K,V>
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Cloneable
,java.util.Map<K,V>
,IChangeable
public class BHashMap<K,V> extends java.util.HashMap<K,V> implements IChangeable
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description BHashMap()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
clear()
V
get(java.lang.Object key)
V
put(K key, V value)
void
putAll(java.util.Map<? extends K,? extends V> m)
V
putNoEvent(K key, V value)
Because this method gets called in response to a reverse binding event firing, we cannot send an event here.V
remove(java.lang.Object key)
-
Methods inherited from class java.util.HashMap
clone, compute, computeIfAbsent, computeIfPresent, containsKey, containsValue, entrySet, forEach, getOrDefault, isEmpty, keySet, merge, putIfAbsent, remove, replace, replace, replaceAll, size, values
-
-
-
-
Method Detail
-
get
public V get(java.lang.Object key)
-
putNoEvent
public V putNoEvent(K key, V value)
Because this method gets called in response to a reverse binding event firing, we cannot send an event here. It triggers an event infinite loop when you have a bi-directional binding hooked up to "get"
-
remove
public V remove(java.lang.Object key)
-
-