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 KchooseKey()protected booleancontainsKey(K key)protected voidforEach(java.util.function.BiConsumer<K,V> f)protected Vget(K key)protected MapHelper<K,V>put(K key, V value)protected MapHelper<K,V>remove(K key)protected voidreplaceAll(java.util.function.BiFunction<? super K,? super V,? extends V> f)protected intsize()-
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:
replaceAllin classMapHelper<K,V>
-
containsKey
protected boolean containsKey(K key)
- Specified by:
containsKeyin classMapHelper<K,V>
-
-