Java Doc for IntHashtable.java in  » PDF » pdf-itext » com » lowagie » text » pdf » 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 » PDF » pdf itext » com.lowagie.text.pdf 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   com.lowagie.text.pdf.IntHashtable

IntHashtable
public class IntHashtable implements Cloneable(Code)

A hash map that uses primitive ints for the key rather than objects.

Note that this class is for internal optimization purposes only, and may not be supported in future releases of Jakarta Commons Lang. Utilities of this sort may be included in future releases of Jakarta Commons Collections.


author:
   Justin Couch
author:
   Alex Chaffee (alex@apache.org)
author:
   Stephen Colebourne
author:
   Bruno Lowagie (change Objects as keys into int values)
author:
   Paulo Soares (added extra methods)

Inner Class :static class Entry
Inner Class :static class IntHashtableIterator implements Iterator


Constructor Summary
public  IntHashtable()
    
public  IntHashtable(int initialCapacity)
    
public  IntHashtable(int initialCapacity, float loadFactor)
    

Method Summary
public  voidclear()
    
public  Objectclone()
    
public  booleancontains(int value)
    

Tests if some key maps into the specified value in this hashtable. This operation is more expensive than the containsKey method.

Note that this method is identical in functionality to containsValue, (which is part of the Map interface in the collections framework).


Parameters:
  value - a value to search for.
public  booleancontainsKey(int key)
    

Tests if the specified int is a key in this hashtable.


Parameters:
  key - possible key.
public  booleancontainsValue(int value)
    

Returns true if this HashMap maps one or more keys to this value.

Note that this method is identical in functionality to contains (which predates the Map interface).


Parameters:
  value - value whose presence in this HashMap is to be tested.
public  intget(int key)
    

Returns the value to which the specified key is mapped in this map.


Parameters:
  key - a key in the hashtable.
public  IteratorgetEntryIterator()
    
public  int[]getKeys()
    
public  intgetOneKey()
    
public  booleanisEmpty()
    
public  intput(int key, int value)
    

Maps the specified key to the specified value in this hashtable.

protected  voidrehash()
    
public  intremove(int key)
    

Removes the key (and its corresponding value) from this hashtable.

This method does nothing if the key is not present in the hashtable.


Parameters:
  key - the key that needs to be removed.
public  intsize()
    
public  int[]toOrderedKeys()
    


Constructor Detail
IntHashtable
public IntHashtable()(Code)

Constructs a new, empty hashtable with a default capacity and load factor, which is 20 and 0.75 respectively.




IntHashtable
public IntHashtable(int initialCapacity)(Code)

Constructs a new, empty hashtable with the specified initial capacity and default load factor, which is 0.75.


Parameters:
  initialCapacity - the initial capacity of the hashtable.
throws:
  IllegalArgumentException - if the initial capacity is lessthan zero.



IntHashtable
public IntHashtable(int initialCapacity, float loadFactor)(Code)

Constructs a new, empty hashtable with the specified initial capacity and the specified load factor.


Parameters:
  initialCapacity - the initial capacity of the hashtable.
Parameters:
  loadFactor - the load factor of the hashtable.
throws:
  IllegalArgumentException - if the initial capacity is lessthan zero, or if the load factor is nonpositive.




Method Detail
clear
public void clear()(Code)

Clears this hashtable so that it contains no keys.




clone
public Object clone()(Code)



contains
public boolean contains(int value)(Code)

Tests if some key maps into the specified value in this hashtable. This operation is more expensive than the containsKey method.

Note that this method is identical in functionality to containsValue, (which is part of the Map interface in the collections framework).


Parameters:
  value - a value to search for. true if and only if some key maps to thevalue argument in this hashtable asdetermined by the equals method;false otherwise.
throws:
  NullPointerException - if the value is null.
See Also:   IntHashtable.containsKey(int)
See Also:   IntHashtable.containsValue(int)
See Also:   java.util.Map



containsKey
public boolean containsKey(int key)(Code)

Tests if the specified int is a key in this hashtable.


Parameters:
  key - possible key. true if and only if the specified int is akey in this hashtable, as determined by the equalsmethod; false otherwise.
See Also:   IntHashtable.contains(int)



containsValue
public boolean containsValue(int value)(Code)

Returns true if this HashMap maps one or more keys to this value.

Note that this method is identical in functionality to contains (which predates the Map interface).


Parameters:
  value - value whose presence in this HashMap is to be tested. boolean true if the value is contained
See Also:   java.util.Map
since:
   JDK1.2



get
public int get(int key)(Code)

Returns the value to which the specified key is mapped in this map.


Parameters:
  key - a key in the hashtable. the value to which the key is mapped in this hashtable;null if the key is not mapped to any value inthis hashtable.
See Also:   IntHashtable.put(int,int)



getEntryIterator
public Iterator getEntryIterator()(Code)



getKeys
public int[] getKeys()(Code)



getOneKey
public int getOneKey()(Code)



isEmpty
public boolean isEmpty()(Code)

Tests if this hashtable maps no keys to values.

true if this hashtable maps no keys to values;false otherwise.



put
public int put(int key, int value)(Code)

Maps the specified key to the specified value in this hashtable. The key cannot be null.

The value can be retrieved by calling the get method with a key that is equal to the original key.


Parameters:
  key - the hashtable key.
Parameters:
  value - the value. the previous value of the specified key in this hashtable,or null if it did not have one.
throws:
  NullPointerException - if the key is null.
See Also:   IntHashtable.get(int)



rehash
protected void rehash()(Code)

Increases the capacity of and internally reorganizes this hashtable, in order to accommodate and access its entries more efficiently.

This method is called automatically when the number of keys in the hashtable exceeds this hashtable's capacity and load factor.




remove
public int remove(int key)(Code)

Removes the key (and its corresponding value) from this hashtable.

This method does nothing if the key is not present in the hashtable.


Parameters:
  key - the key that needs to be removed. the value to which the key had been mapped in this hashtable,or null if the key did not have a mapping.



size
public int size()(Code)

Returns the number of keys in this hashtable.

the number of keys in this hashtable.



toOrderedKeys
public int[] toOrderedKeys()(Code)



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.