putAll(Map)
JDK Doc(JAVA)Download this dictionary
putAll(Map) *2
- Method in class java.security.Provider 
public void putAll (Map  t)
Copies all of the mappings from the specified Map to this provider. These mappings will replace any properties that this provider had for any of the keys currently in the specified Map.Overrides: putAll in class Hashtable Since: JDK1.2
 
putAll(Map) *3
- Method in class java.util.Hashtable 
public void putAll (Map  t)
Copies all of the mappings from the specified Map to this Hashtable These mappings will replace any mappings that this Hashtable had for any of the keys currently in the specified Map.Specified by:  putAll in interface Map Since: JDK1.2
 
putAll(Map) *4
- Method in class java.util.AbstractMap 
public void putAll (Map  t)
Copies all of the mappings from the specified map to this map (optional operation). These mappings will replace any mappings that this map had for any of the keys currently in the specified map. This implementation iterates over the specified map's collection, and calls this map's operation once for each entry returned by the iteration.Specified by:  putAll in interface Map Parameters: t - mappings to be stored in this map.Throws: UnsupportedOperationException - if the putAll operation is not supported by this map. - if the class of a key or value in the specified map prevents it from being stored in this map.ClassCastException - if the class of a key or value in the specified map prevents it from being stored in this map. - if some aspect of a key or value in the specified map prevents it from being stored in this map.IllegalArgumentException - if some aspect of a key or value in the specified map prevents it from being stored in this map. - this map does not permit keys or values, and the specified key or value is .NullPointerException - this map does not permit null keys or values, and the specified key or value is null.
 
putAll(Map) *5
- Method in class java.util.HashMap 
public void putAll (Map  t)
Copies all of the mappings from the specified map to this one. These mappings replace any mappings that this map had for any of the keys currently in the specified Map.Specified by:  putAll in interface Map Overrides: putAll in class AbstractMap Parameters: t - Mappings to be stored in this map.
 
putAll(Map) *6
- Method in interface java.util.Map 
public void putAll (Map  t)
Copies all of the mappings from the specified map to this map (optional operation). These mappings will replace any mappings that this map had for any of the keys currently in the specified map.Parameters: t - Mappings to be stored in this map.Throws: UnsupportedOperationException - if the putAll method is not supported by this map. - if the class of a key or value in the specified map prevents it from being stored in this map.ClassCastException - if the class of a key or value in the specified map prevents it from being stored in this map. - some aspect of a key or value in the specified map prevents it from being stored in this map.IllegalArgumentException - some aspect of a key or value in the specified map prevents it from being stored in this map. - this map does not permit keys or values, and the specified key or value is .NullPointerException - this map does not permit null keys or values, and the specified key or value is null.
 
putAll(Map) *7
- Method in class java.util.TreeMap 
public void putAll (Map  map)
Copies all of the mappings from the specified map to this map. These mappings replace any mappings that this map had for any of the keys currently in the specified map.Overrides: putAll in class AbstractMap Parameters: t - Mappings to be stored in this map.Throws: ClassCastException - class of a key or value in the specified map prevents it from being stored in this map. - this map does not permit keys and a specified key is .NullPointerException - this map does not permit null keys and a specified key is null.
 
putAll(Map) *8
- Method in class java.util.jar.Attributes 
public void putAll (Map  attr)
Copies all of the attribute name-value mappings from the specified Attributes to this Map. Duplicate mappings will be replaced.Specified by:  putAll in interface Map Parameters: attr - the Attributes to be stored in this mapThrows: IllegalArgumentException - if attr is not a Attributes instance
 
putAll(Map)
- Method in class java.awt.RenderingHints 
public void putAll (Map  m)
Copies all of the mappings from the specified Map to this RenderingHints. These mappings replace any mappings that this RenderingHints had for any of the keys currently in the specified Map.Specified by:  putAll in interface Map Parameters: t - mappings to be stored in this RenderingHints.Throws: ClassCastException - class of a key or value in the specified Map prevents it from being stored in this RenderingHints. - some aspect of a key or value in the specified prevents it from being stored in this .IllegalArgumentException - some aspect of a key or value in the specified Map prevents it from being stored in this RenderingHints.