Java Doc for FastHashMap.java in  » Library » Apache-common-Collections » org » apache » commons » collections » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Library » Apache common Collections » org.apache.commons.collections 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.util.HashMap
   org.apache.commons.collections.FastHashMap

FastHashMap
public class FastHashMap extends HashMap (Code)

A customized implementation of java.util.HashMap designed to operate in a multithreaded environment where the large majority of method calls are read-only, instead of structural changes. When operating in "fast" mode, read calls are non-synchronized and write calls perform the following steps:

  • Clone the existing collection
  • Perform the modification on the clone
  • Replace the existing collection with the (modified) clone

When first created, objects of this class default to "slow" mode, where all accesses of any type are synchronized but no cloning takes place. This is appropriate for initially populating the collection, followed by a switch to "fast" mode (by calling setFast(true)) after initialization is complete.

NOTE: If you are creating and accessing a HashMap only within a single thread, you should use java.util.HashMap directly (with no synchronization), for maximum performance.

NOTE: This class is not cross-platform. Using it may cause unexpected failures on some architectures. It suffers from the same problems as the double-checked locking idiom. In particular, the instruction that clones the internal collection and the instruction that sets the internal reference to the clone can be executed or perceived out-of-order. This means that any read operation might fail unexpectedly, as it may be reading the state of the internal collection before the internal collection is fully formed. For more information on the double-checked locking idiom, see the Double-Checked Locking Idiom Is Broken Declaration.


since:
   Commons Collections 1.0
version:
   $Revision: 155406 $ $Date: 2005-02-26 12:55:26 +0000 (Sat, 26 Feb 2005) $
author:
   Craig R. McClanahan
author:
   Stephen Colebourne


Field Summary
protected  booleanfast
    
protected  HashMapmap
     The underlying map we are managing.

Constructor Summary
public  FastHashMap()
     Construct an empty map.
public  FastHashMap(int capacity)
     Construct an empty map with the specified capacity.
public  FastHashMap(int capacity, float factor)
     Construct an empty map with the specified capacity and load factor.
public  FastHashMap(Map map)
     Construct a new map with the same mappings as the specified map.

Method Summary
public  voidclear()
     Remove all mappings from this map.
public  Objectclone()
     Return a shallow copy of this FastHashMap instance.
public  booleancontainsKey(Object key)
     Return true if this map contains a mapping for the specified key.
public  booleancontainsValue(Object value)
     Return true if this map contains one or more keys mapping to the specified value.
public  SetentrySet()
     Return a collection view of the mappings contained in this map.
public  booleanequals(Object o)
     Compare the specified object with this list for equality.
public  Objectget(Object key)
     Return the value to which this map maps the specified key.
public  booleangetFast()
     Returns true if this map is operating in fast mode.
public  inthashCode()
     Return the hash code value for this map.
public  booleanisEmpty()
     Return true if this map contains no mappings.
public  SetkeySet()
     Return a set view of the keys contained in this map.
public  Objectput(Object key, Object value)
     Associate the specified value with the specified key in this map.
public  voidputAll(Map in)
     Copy all of the mappings from the specified map to this one, replacing any mappings with the same keys.
public  Objectremove(Object key)
     Remove any mapping for this key, and return any previously mapped value.
public  voidsetFast(boolean fast)
     Sets whether this map is operating in fast mode.
public  intsize()
     Return the number of key-value mappings in this map.
public  Collectionvalues()
     Return a collection view of the values contained in this map.

Field Detail
fast
protected boolean fast(Code)
Are we currently operating in "fast" mode?



map
protected HashMap map(Code)
The underlying map we are managing.




Constructor Detail
FastHashMap
public FastHashMap()(Code)
Construct an empty map.



FastHashMap
public FastHashMap(int capacity)(Code)
Construct an empty map with the specified capacity.
Parameters:
  capacity - the initial capacity of the empty map



FastHashMap
public FastHashMap(int capacity, float factor)(Code)
Construct an empty map with the specified capacity and load factor.
Parameters:
  capacity - the initial capacity of the empty map
Parameters:
  factor - the load factor of the new map



FastHashMap
public FastHashMap(Map map)(Code)
Construct a new map with the same mappings as the specified map.
Parameters:
  map - the map whose mappings are to be copied




Method Detail
clear
public void clear()(Code)
Remove all mappings from this map.



clone
public Object clone()(Code)
Return a shallow copy of this FastHashMap instance. The keys and values themselves are not copied. a clone of this map



containsKey
public boolean containsKey(Object key)(Code)
Return true if this map contains a mapping for the specified key.
Parameters:
  key - the key to be searched for true if the map contains the key



containsValue
public boolean containsValue(Object value)(Code)
Return true if this map contains one or more keys mapping to the specified value.
Parameters:
  value - the value to be searched for true if the map contains the value



entrySet
public Set entrySet()(Code)
Return a collection view of the mappings contained in this map. Each element in the returned collection is a Map.Entry.



equals
public boolean equals(Object o)(Code)
Compare the specified object with this list for equality. This implementation uses exactly the code that is used to define the list equals function in the documentation for the Map.equals method.
Parameters:
  o - the object to be compared to this list true if the two maps are equal



get
public Object get(Object key)(Code)
Return the value to which this map maps the specified key. Returns null if the map contains no mapping for this key, or if there is a mapping with a value of null. Use the containsKey() method to disambiguate these cases.
Parameters:
  key - the key whose value is to be returned the value mapped to that key, or null



getFast
public boolean getFast()(Code)
Returns true if this map is operating in fast mode. true if this map is operating in fast mode



hashCode
public int hashCode()(Code)
Return the hash code value for this map. This implementation uses exactly the code that is used to define the list hash function in the documentation for the Map.hashCode method. suitable integer hash code



isEmpty
public boolean isEmpty()(Code)
Return true if this map contains no mappings. is the map currently empty



keySet
public Set keySet()(Code)
Return a set view of the keys contained in this map.



put
public Object put(Object key, Object value)(Code)
Associate the specified value with the specified key in this map. If the map previously contained a mapping for this key, the old value is replaced and returned.
Parameters:
  key - the key with which the value is to be associated
Parameters:
  value - the value to be associated with this key the value previously mapped to the key, or null



putAll
public void putAll(Map in)(Code)
Copy all of the mappings from the specified map to this one, replacing any mappings with the same keys.
Parameters:
  in - the map whose mappings are to be copied



remove
public Object remove(Object key)(Code)
Remove any mapping for this key, and return any previously mapped value.
Parameters:
  key - the key whose mapping is to be removed the value removed, or null



setFast
public void setFast(boolean fast)(Code)
Sets whether this map is operating in fast mode.
Parameters:
  fast - true if this map should operate in fast mode



size
public int size()(Code)
Return the number of key-value mappings in this map. the current size of the map



values
public Collection values()(Code)
Return a collection view of the values contained in this map.



Methods inherited from java.util.HashMap
public void clear()(Code)(Java Doc)
public Object clone()(Code)(Java Doc)
public boolean containsKey(Object key)(Code)(Java Doc)
public boolean containsValue(Object value)(Code)(Java Doc)
public Set<Map.Entry<K, V>> entrySet()(Code)(Java Doc)
public V get(Object key)(Code)(Java Doc)
public boolean isEmpty()(Code)(Java Doc)
public Set<K> keySet()(Code)(Java Doc)
public V put(K key, V value)(Code)(Java Doc)
public void putAll(Map<? extends K, ? extends V> m)(Code)(Java Doc)
public V remove(Object key)(Code)(Java Doc)
public int size()(Code)(Java Doc)
public Collection<V> values()(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.