class CaseInsensitiveMap<Value> : MutableMap<String, Value>
A map with case insensitive String keys
CaseInsensitiveMap()
A map with case insensitive String keys |
val entries: MutableSet<MutableEntry<String, Value>> |
|
val keys: MutableSet<String> |
|
val size: Int |
|
val values: MutableCollection<Value> |
fun clear(): Unit |
|
fun containsKey(key: String): Boolean |
|
fun containsValue(value: Value): Boolean |
|
fun equals(other: Any?): Boolean |
|
fun get(key: String): Value? |
|
fun hashCode(): Int |
|
fun isEmpty(): Boolean |
|
fun put(key: String, value: Value): Value? |
|
fun putAll(from: Map<out String, Value>): Unit |
|
fun remove(key: String): Value? |