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