Exemplo n.º 1
0
 /**
  * Determines if the given key value exists in this hash map.
  *
  * @param k The key value to look for in this hash map.
  * @return <code>true</code> if this hash map contains the given key, <code>false</code>
  *     otherwise.
  */
 public boolean contains(final K k) {
   return m.containsKey(new Key(k));
 }