I have searched but could not find a way to print only single key, value pair for particular entry.
map.containsValue(value) or map.containsKey(key)
will only tell if particular value or key is available or not.
I want to print that particular key, value pair if (value is available)
In other link, They want to get the random value, if you do not know the key. Here I know key and value and want to print it for particular key and value.