Package jetbrains.buildServer.util
Class CaseInsensitiveMap<T>
- java.lang.Object
-
- jetbrains.buildServer.util.CaseInsensitiveMap<T>
-
-
Constructor Summary
Constructors Constructor Description CaseInsensitiveMap()CaseInsensitiveMap(Map<String,T> source)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclear()booleancontainsKey(Object key)booleancontainsValue(Object value)Set<Map.Entry<String,T>>entrySet()Tget(Object key)booleanisEmpty()Set<String>keySet()Tput(String key, T value)voidputAll(Map<? extends String,? extends T> t)Tremove(Object key)intsize()StringtoString()Collection<T>values()-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface java.util.Map
compute, computeIfAbsent, computeIfPresent, equals, forEach, getOrDefault, hashCode, merge, putIfAbsent, remove, replace, replace, replaceAll
-
-
-
-
Method Detail
-
containsKey
public boolean containsKey(Object key)
- Specified by:
containsKeyin interfaceMap<String,T>
-
containsValue
public boolean containsValue(Object value)
- Specified by:
containsValuein interfaceMap<String,T>
-
-