Package com._1c.g5.v8.dt.form.service
Class DtObjectMap<TKey,TValue>
- java.lang.Object
-
- com._1c.g5.v8.dt.form.service.DtObjectMap<TKey,TValue>
-
-
Constructor Summary
Constructors Constructor Description DtObjectMap(DtObjectMap.IComparer<TKey> keyComparer)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
clear()
boolean
containsKey(Object key)
boolean
containsValue(Object value)
Set<Map.Entry<TKey,TValue>>
entrySet()
TValue
get(Object key)
boolean
isEmpty()
Set<TKey>
keySet()
TValue
put(TKey key, TValue value)
void
putAll(Map<? extends TKey,? extends TValue> m)
TValue
remove(Object key)
int
size()
Collection<TValue>
values()
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface java.util.Map
compute, computeIfAbsent, computeIfPresent, equals, forEach, getOrDefault, hashCode, merge, putIfAbsent, remove, replace, replace, replaceAll
-
-
-
-
Constructor Detail
-
DtObjectMap
public DtObjectMap(DtObjectMap.IComparer<TKey> keyComparer)
-
-
Method Detail
-
containsKey
public boolean containsKey(Object key)
- Specified by:
containsKey
in interfaceMap<TKey,TValue>
-
containsValue
public boolean containsValue(Object value)
- Specified by:
containsValue
in interfaceMap<TKey,TValue>
-
-