Class CompositeMap<TK,TV>
- java.lang.Object
-
- jetbrains.buildServer.dataStructures.CompositeMap<TK,TV>
-
-
Constructor Summary
Constructors Constructor Description CompositeMap(Collection<Map<TK,TV>> maps)
-
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<TK,TV>>
entrySet()
TV
get(Object key)
boolean
isEmpty()
Set<TK>
keySet()
TV
put(TK key, TV value)
void
putAll(Map<? extends TK,? extends TV> m)
TV
remove(Object key)
int
size()
Collection<TV>
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
-
CompositeMap
public CompositeMap(@NotNull Collection<Map<TK,TV>> maps)
-
-