Package org.reactfx.util
Class MapHelper.SingleEntryHelper<K,V>
- java.lang.Object
-
- org.reactfx.util.MapHelper<K,V>
-
- org.reactfx.util.MapHelper.SingleEntryHelper<K,V>
-
-
Constructor Summary
Constructors Constructor Description SingleEntryHelper(K key, V value)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected K
chooseKey()
protected boolean
containsKey(K key)
protected void
forEach(java.util.function.BiConsumer<K,V> f)
protected V
get(K key)
protected MapHelper<K,V>
put(K key, V value)
protected MapHelper<K,V>
remove(K key)
protected void
replaceAll(java.util.function.BiFunction<? super K,? super V,? extends V> f)
protected int
size()
-
Methods inherited from class org.reactfx.util.MapHelper
chooseKey, containsKey, forEach, get, isEmpty, put, remove, replaceAll, size
-
-
-
-
Method Detail
-
replaceAll
protected void replaceAll(java.util.function.BiFunction<? super K,? super V,? extends V> f)
- Specified by:
replaceAll
in classMapHelper<K,V>
-
containsKey
protected boolean containsKey(K key)
- Specified by:
containsKey
in classMapHelper<K,V>
-
-