public class ConcurrentHashMapLong<T> extends Object implements ConcurrentMapLong<T>
| コンストラクタと説明 |
|---|
ConcurrentHashMapLong(ConcurrentMap<Long,T> map) |
| 修飾子とタイプ | メソッドと説明 |
|---|---|
void |
clear() |
boolean |
containsKey(Object key) |
boolean |
containsValue(Object value) |
Set<Map.Entry<Long,T>> |
entrySet() |
boolean |
equals(Object o) |
T |
get(long key) |
T |
get(Object key) |
int |
hashCode() |
boolean |
isEmpty() |
Set<Long> |
keySet() |
T |
put(long key,
T value) |
T |
put(Long key,
T value) |
void |
putAll(Map<? extends Long,? extends T> m) |
T |
putIfAbsent(long key,
T value) |
T |
putIfAbsent(Long key,
T value) |
T |
remove(long key) |
T |
remove(Object key) |
boolean |
remove(Object key,
Object value) |
T |
replace(Long key,
T value) |
boolean |
replace(Long key,
T oldValue,
T newValue) |
int |
size() |
String |
toString() |
Collection<T> |
values() |
compute, computeIfAbsent, computeIfPresent, forEach, getOrDefault, merge, replaceAllpublic ConcurrentHashMapLong(ConcurrentMap<Long,T> map)
public T get(long key)
get インタフェース内 ConcurrentMapLong<T>public T remove(long key)
remove インタフェース内 ConcurrentMapLong<T>public T put(long key, T value)
put インタフェース内 ConcurrentMapLong<T>public T putIfAbsent(long key, T value)
putIfAbsent インタフェース内 ConcurrentMapLong<T>public boolean containsKey(Object key)
containsKey インタフェース内 Map<Long,T>public boolean containsValue(Object value)
containsValue インタフェース内 Map<Long,T>public T putIfAbsent(Long key, T value)
putIfAbsent インタフェース内 ConcurrentMap<Long,T>putIfAbsent インタフェース内 Map<Long,T>Copyright © 2009–2016. All rights reserved.