Interface ConcurrentIntObjectMap<V>
-
- All Known Implementing Classes:
ConcurrentIntObjectHashMap,ConcurrentRefValueIntObjectHashMap,ConcurrentWeakIntObjectHashMap
public interface ConcurrentIntObjectMap<V>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description VaddOrGet(int key, V value)voidclear()booleancontains(int key)java.lang.Iterable<IntObjectEntry<V>>entries()Vget(int key)booleanisEmpty()int[]keys()Vput(int key, V value)VputIfAbsent(int key, V value)Vremove(int key)booleanremove(int key, V value)booleanreplace(int key, V oldValue, V newValue)intsize()
-
-
-
Method Detail
-
size
int size()
-
isEmpty
boolean isEmpty()
-
contains
boolean contains(int key)
-
clear
void clear()
-
keys
@NotNull int[] keys()
-
entries
@NotNull java.lang.Iterable<IntObjectEntry<V>> entries()
-
-