Exemplo n.º 1
0
 /**
  * Remove all keys in the array map that exist in the given collection.
  *
  * @param collection The collection whose contents are to be used to remove keys.
  * @return Returns true if any keys were removed from the array map, else false.
  */
 public boolean removeAll(Collection<?> collection) {
   return MapCollections.removeAllHelper(this, collection);
 }