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 V
addOrGet(int key, V value)
void
clear()
boolean
contains(int key)
java.lang.Iterable<IntObjectEntry<V>>
entries()
V
get(int key)
boolean
isEmpty()
int[]
keys()
V
put(int key, V value)
V
putIfAbsent(int key, V value)
V
remove(int key)
boolean
remove(int key, V value)
boolean
replace(int key, V oldValue, V newValue)
int
size()
-
-
-
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()
-
-