Method clone()
Return type: java.lang.Object
Member of: java.util.HashMap
[api documentation ] [ main menu]

Examples of how the element is used (one line per example):
[add your own example]

1 return arguments == null ? null : (makeCopy ? (Map) arguments.clone() : arguments);
2 values = (Map)((HashMap)da.values).clone();
3 return m_properties == null ? null : (Map)m_properties.clone();
4 HashMap hashmap1 = (HashMap) map.clone();
5 HashMap hashmap1 = (HashMap) map.clone();
6 Iterator it = ((HashMap)sections.clone()).values().iterator();
7 Map wm = (Map)((HashMap)headers).clone();
8 HashMap temp = (HashMap) map.clone();
9 c._initializedTools = (HashMap) _initializedTools.clone();
10 Map newEditorMap = (Map) ((HashMap) propertyEditors).clone();
11 HashMap notFoundTables = (HashMap) dbcheck2.result.clone();
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.