Java Doc for IntHashMap.java in  » J2EE » wicket » wicket » util » 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 » J2EE » wicket » wicket.util.collections 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   wicket.util.collections.IntHashMap

IntHashMap
public class IntHashMap implements Cloneable,Serializable(Code)
This is a int hashmap that has the exact same features and interface as a normal Map except that the key is directly an integer. So no hash is calculated or key object is stored.
author:
   jcompagner

Inner Class :public static class Entry

Field Summary
final static  intDEFAULT_INITIAL_CAPACITY
     The default initial capacity - MUST be a power of two.
final static  floatDEFAULT_LOAD_FACTOR
     The load factor used when none specified in constructor.
final static  intMAXIMUM_CAPACITY
     The maximum capacity, used if a higher value is implicitly specified by either of the constructors with arguments.
transient volatile  SetkeySet
    
final  floatloadFactor
     The load factor for the hash table.
transient volatile  intmodCount
     The number of times this HashMap has been structurally modified Structural modifications are those that change the number of mappings in the HashMap or otherwise modify its internal structure (e.g., rehash). This field is used to make iterators on Collection-views of the HashMap fail-fast.
transient  intsize
     The number of key-value mappings contained in this identity hash map.
transient  Entry[]table
     The table, resized as necessary.
 intthreshold
     The next size value at which to resize (capacity * load factor).
transient volatile  Collectionvalues
    

Constructor Summary
public  IntHashMap(int initialCapacity, float loadFactor)
     Constructs an empty HashMap with the specified initial capacity and load factor.
public  IntHashMap(int initialCapacity)
     Constructs an empty HashMap with the specified initial capacity and the default load factor (0.75).
public  IntHashMap()
     Constructs an empty HashMap with the default initial capacity (16) and the default load factor (0.75).

Method Summary
 voidaddEntry(int key, Object value, int bucketIndex)
     Add a new entry with the specified key, value and hash code to the specified bucket.
 intcapacity()
    
public  voidclear()
     Removes all mappings from this map.
public  Objectclone()
     Returns a shallow copy of this HashMap instance: the keys and values themselves are not cloned.
public  booleancontainsKey(int key)
     Returns true if this map contains a mapping for the specified key.
public  booleancontainsValue(Object value)
     Returns true if this map maps one or more keys to the specified value.
Parameters:
  value - value whose presence in this map is to be tested.
 voidcreateEntry(int key, Object value, int bucketIndex)
     Like addEntry except that this version is used when creating entries as part of Map construction or "pseudo-construction" (cloning, deserialization).
public  SetentrySet()
     Returns a collection view of the mappings contained in this map.
public  Objectget(int key)
     Returns the value to which the specified key is mapped in this identity hash map, or null if the map contains no mapping for this key. A return value of null does not necessarily indicate that the map contains no mapping for the key; it is also possible that the map explicitly maps the key to null.
 EntrygetEntry(int key)
     Returns the entry associated with the specified key in the HashMap.
static  intindexFor(int h, int length)
     Returns index for hash code h.
 voidinit()
     Initialization hook for subclasses.
public  booleanisEmpty()
     Returns true if this map contains no key-value mappings.
public  SetkeySet()
     Returns a set view of the keys contained in this map.
 floatloadFactor()
    
 IteratornewEntryIterator()
    
 IteratornewKeyIterator()
    
 IteratornewValueIterator()
    
public  Objectput(int key, Object value)
     Associates the specified value with the specified key in this map.
public  voidputAll(IntHashMap m)
     Copies all of the mappings from the specified map to this map These mappings will replace any mappings that this map had for any of the keys currently in the specified map.
 voidputAllForCreate(IntHashMap m)
    
public  Objectremove(int key)
     Removes the mapping for this key from this map if present.
Parameters:
  key - key whose mapping is to be removed from the map.
 EntryremoveEntryForKey(int key)
     Removes and returns the entry associated with the specified key in the HashMap.
 EntryremoveMapping(Object o)
     Special version of remove for EntrySet.
 voidresize(int newCapacity)
     Rehashes the contents of this map into a new array with a larger capacity.
public  intsize()
     Returns the number of key-value mappings in this map.
 voidtransfer(Entry[] newTable)
     Transfer all entries from current table to newTable.
public  Collectionvalues()
     Returns a collection view of the values contained in this map.

Field Detail
DEFAULT_INITIAL_CAPACITY
final static int DEFAULT_INITIAL_CAPACITY(Code)
The default initial capacity - MUST be a power of two.



DEFAULT_LOAD_FACTOR
final static float DEFAULT_LOAD_FACTOR(Code)
The load factor used when none specified in constructor.



MAXIMUM_CAPACITY
final static int MAXIMUM_CAPACITY(Code)
The maximum capacity, used if a higher value is implicitly specified by either of the constructors with arguments. MUST be a power of two <= 1<<30.



keySet
transient volatile Set keySet(Code)



loadFactor
final float loadFactor(Code)
The load factor for the hash table.



modCount
transient volatile int modCount(Code)
The number of times this HashMap has been structurally modified Structural modifications are those that change the number of mappings in the HashMap or otherwise modify its internal structure (e.g., rehash). This field is used to make iterators on Collection-views of the HashMap fail-fast. (See ConcurrentModificationException).



size
transient int size(Code)
The number of key-value mappings contained in this identity hash map.



table
transient Entry[] table(Code)
The table, resized as necessary. Length MUST Always be a power of two.



threshold
int threshold(Code)
The next size value at which to resize (capacity * load factor).



values
transient volatile Collection values(Code)




Constructor Detail
IntHashMap
public IntHashMap(int initialCapacity, float loadFactor)(Code)
Constructs an empty HashMap with the specified initial capacity and load factor.
Parameters:
  initialCapacity - The initial capacity.
Parameters:
  loadFactor - The load factor.
throws:
  IllegalArgumentException - if the initial capacity is negative or the load factor isnonpositive.



IntHashMap
public IntHashMap(int initialCapacity)(Code)
Constructs an empty HashMap with the specified initial capacity and the default load factor (0.75).
Parameters:
  initialCapacity - the initial capacity.
throws:
  IllegalArgumentException - if the initial capacity is negative.



IntHashMap
public IntHashMap()(Code)
Constructs an empty HashMap with the default initial capacity (16) and the default load factor (0.75).




Method Detail
addEntry
void addEntry(int key, Object value, int bucketIndex)(Code)
Add a new entry with the specified key, value and hash code to the specified bucket. It is the responsibility of this method to resize the table if appropriate. Subclass overrides this to alter the behavior of put method.
Parameters:
  key -
Parameters:
  value -
Parameters:
  bucketIndex -



capacity
int capacity()(Code)



clear
public void clear()(Code)
Removes all mappings from this map.



clone
public Object clone() throws CloneNotSupportedException(Code)
Returns a shallow copy of this HashMap instance: the keys and values themselves are not cloned. a shallow copy of this map.



containsKey
public boolean containsKey(int key)(Code)
Returns true if this map contains a mapping for the specified key.
Parameters:
  key - The key whose presence in this map is to be tested true if this map contains a mapping for the specifiedkey.



containsValue
public boolean containsValue(Object value)(Code)
Returns true if this map maps one or more keys to the specified value.
Parameters:
  value - value whose presence in this map is to be tested. true if this map maps one or more keys to thespecified value.



createEntry
void createEntry(int key, Object value, int bucketIndex)(Code)
Like addEntry except that this version is used when creating entries as part of Map construction or "pseudo-construction" (cloning, deserialization). This version needn't worry about resizing the table. Subclass overrides this to alter the behavior of HashMap(Map), clone, and readObject.
Parameters:
  key -
Parameters:
  value -
Parameters:
  bucketIndex -



entrySet
public Set entrySet()(Code)
Returns a collection view of the mappings contained in this map. Each element in the returned collection is a Map.Entry. The collection is backed by the map, so changes to the map are reflected in the collection, and vice-versa. The collection supports element removal, which removes the corresponding mapping from the map, via the Iterator.remove, Collection.remove, removeAll, retainAll, and clear operations. It does not support the add or addAll operations. a collection view of the mappings contained in this map.
See Also:   Map.Entry



get
public Object get(int key)(Code)
Returns the value to which the specified key is mapped in this identity hash map, or null if the map contains no mapping for this key. A return value of null does not necessarily indicate that the map contains no mapping for the key; it is also possible that the map explicitly maps the key to null. The containsKey method may be used to distinguish these two cases.
Parameters:
  key - the key whose associated value is to be returned. the value to which this map maps the specified key, ornull if the map contains no mapping for this key.
See Also:   IntHashMap.put(int,Object)



getEntry
Entry getEntry(int key)(Code)
Returns the entry associated with the specified key in the HashMap. Returns null if the HashMap contains no mapping for this key.
Parameters:
  key - The Entry object for the given hash key



indexFor
static int indexFor(int h, int length)(Code)
Returns index for hash code h.
Parameters:
  h -
Parameters:
  length - The index for the hash integer for the given length



init
void init()(Code)
Initialization hook for subclasses. This method is called in all constructors and pseudo-constructors (clone, readObject) after HashMap has been initialized but before any entries have been inserted. (In the absence of this method, readObject would require explicit knowledge of subclasses.)



isEmpty
public boolean isEmpty()(Code)
Returns true if this map contains no key-value mappings. true if this map contains no key-value mappings.



keySet
public Set keySet()(Code)
Returns a set view of the keys contained in this map. The set is backed by the map, so changes to the map are reflected in the set, and vice-versa. The set supports element removal, which removes the corresponding mapping from this map, via the Iterator.remove, Set.remove, removeAll, retainAll, and clear operations. It does not support the add or addAll operations. a set view of the keys contained in this map.



loadFactor
float loadFactor()(Code)



newEntryIterator
Iterator newEntryIterator()(Code)



newKeyIterator
Iterator newKeyIterator()(Code)



newValueIterator
Iterator newValueIterator()(Code)



put
public Object put(int key, Object value)(Code)
Associates 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.
Parameters:
  key - key with which the specified value is to be associated.
Parameters:
  value - value to be associated with the specified key. previous value associated with specified key, or nullif there was no mapping for key. A null return canalso indicate that the HashMap previously associatednull with the specified key.



putAll
public void putAll(IntHashMap m)(Code)
Copies all of the mappings from the specified map to this map These mappings will replace any mappings that this map had for any of the keys currently in the specified map.
Parameters:
  m - mappings to be stored in this map.
throws:
  NullPointerException - if the specified map is null.



putAllForCreate
void putAllForCreate(IntHashMap m)(Code)



remove
public Object remove(int key)(Code)
Removes the mapping for this key from this map if present.
Parameters:
  key - key whose mapping is to be removed from the map. previous value associated with specified key, or nullif there was no mapping for key. A null return canalso indicate that the map previously associated nullwith the specified key.



removeEntryForKey
Entry removeEntryForKey(int key)(Code)
Removes and returns the entry associated with the specified key in the HashMap. Returns null if the HashMap contains no mapping for this key.
Parameters:
  key - The Entry object that was removed



removeMapping
Entry removeMapping(Object o)(Code)
Special version of remove for EntrySet.
Parameters:
  o - The entry that was removed



resize
void resize(int newCapacity)(Code)
Rehashes the contents of this map into a new array with a larger capacity. This method is called automatically when the number of keys in this map reaches its threshold. If current capacity is MAXIMUM_CAPACITY, this method does not resize the map, but but sets threshold to Integer.MAX_VALUE. This has the effect of preventing future calls.
Parameters:
  newCapacity - the new capacity, MUST be a power of two; must be greater thancurrent capacity unless current capacity is MAXIMUM_CAPACITY(in which case value is irrelevant).



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



transfer
void transfer(Entry[] newTable)(Code)
Transfer all entries from current table to newTable.
Parameters:
  newTable -



values
public Collection values()(Code)
Returns a collection view of the values contained in this map. The collection is backed by the map, so changes to the map are reflected in the collection, and vice-versa. The collection supports element removal, which removes the corresponding mapping from this map, via the Iterator.remove, Collection.remove, removeAll, retainAll, and clear operations. It does not support the add or addAll operations. a collection view of the values contained in this map.



Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(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.