Package java.util
Class AbstractMap
boolean containsKey(Object key)
_INSERT_METHOD_SIGNATURE_HERE_
Description:
Implements interface method Map.containsKey.
This implementation iterates over entrySet() searching for an entry with the specified key. If such an entry is found, true is returned. If the iteration terminates without finding such an entry, false is returned. Note that this implementation requires linear time in the size of the map; many implementations will override this method.