Returns the value to which the specified string key is mapped, or null if this map contains no mapping for the key.
Returns the value to which the specified string key is mapped, or null if this map contains no mapping for the key.More formally, if this map contains a mapping from a key k to a value v such that (key==null ? k==null : memcmp( key, k, keyLength ) == 0, then this method returns v; otherwise it returns null. (There can be at most one such mapping.)
For hash maps this method has a time complexity of O(1). For tree maps this method has a time complexity of O(Log N).