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 void
clear()
boolean
containsKey(Object key)
boolean
containsValue(Object value)
Set<Map.Entry<String,T>>
entrySet()
T
get(Object key)
boolean
isEmpty()
Set<String>
keySet()
T
put(String key, T value)
void
putAll(Map<? extends String,? extends T> t)
T
remove(Object key)
int
size()
String
toString()
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:
containsKey
in interfaceMap<String,T>
-
containsValue
public boolean containsValue(Object value)
- Specified by:
containsValue
in interfaceMap<String,T>
-
-