Java Doc for CaselessStringKeyHashtable.java in  » 6.0-JDK-Modules » Java-Advanced-Imaging » com » sun » media » jai » util » 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 » 6.0 JDK Modules » Java Advanced Imaging » com.sun.media.jai.util 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.util.Hashtable
   com.sun.media.jai.util.CaselessStringKeyHashtable

CaselessStringKeyHashtable
public class CaselessStringKeyHashtable extends Hashtable implements Cloneable,java.io.Serializable(Code)
A Hashtable where the keys are CaselessStringKeys.



Constructor Summary
public  CaselessStringKeyHashtable()
     Constructs a new, empty CaselessStringKeyHashtable.
public  CaselessStringKeyHashtable(Map t)
     Constructs a new CaselessStringKeyHashtable with the same mappings as the given Map.

Method Summary
public  Objectclone()
     Returns a clone of the CaselessStringKeyHashtable as an Object.
public  booleancontainsKey(String key)
     Tests if the specified String is a key in this hashtable.
public  booleancontainsKey(CaselessStringKey key)
     Tests if the specified CaselessStringKey is a key in this hashtable.
Parameters:
  key - possible key.
public  booleancontainsKey(Object key)
     Allow only String and CaselessStringKey keys to be looked up.
public  Objectget(String key)
     Returns the value to which the specified key is mapped in this hashtable.
public  Objectget(CaselessStringKey key)
     Returns the value to which the specified key is mapped in this hashtable.
Parameters:
  key - a key in the hashtable.
public  Objectget(Object key)
     Allow only String and CaselessStringKey keys to be looked up. This always throws an IllegalArgumentException.
Parameters:
  key - possible key.
public  Objectput(String key, Object value)
     Maps the specified key to the specified value in this hashtable.
public  Objectput(CaselessStringKey key, Object value)
     Maps the specified key to the specified value in this hashtable.
public  Objectput(Object key, Object value)
     Allow only String and CaselessStringKey keys to be mapped. This always throws an IllegalArgumentException.
Parameters:
  key - possible key.
Parameters:
  value - the value.
public  Objectremove(String key)
     Removes the key (and its corresponding value) from this hashtable.
public  Objectremove(CaselessStringKey key)
     Removes the key (and its corresponding value) from this hashtable.
public  Objectremove(Object key)
     Allow only String and CaselessStringKey keys to be removed. This always throws an IllegalArgumentException.
Parameters:
  key - possible key.


Constructor Detail
CaselessStringKeyHashtable
public CaselessStringKeyHashtable()(Code)
Constructs a new, empty CaselessStringKeyHashtable.



CaselessStringKeyHashtable
public CaselessStringKeyHashtable(Map t)(Code)
Constructs a new CaselessStringKeyHashtable with the same mappings as the given Map.
Parameters:
  t - the map whose mappings are to be placed in this map.




Method Detail
clone
public Object clone()(Code)
Returns a clone of the CaselessStringKeyHashtable as an Object.



containsKey
public boolean containsKey(String key)(Code)
Tests if the specified String is a key in this hashtable. The key is wrapped by a CaselessStringKey before being looked up.
Parameters:
  key - possible key. true if and only if the specified object is a key in this hashtable, as determined by the equals method; false otherwise.



containsKey
public boolean containsKey(CaselessStringKey key)(Code)
Tests if the specified CaselessStringKey is a key in this hashtable.
Parameters:
  key - possible key. true if and only if the specified object is a key in this hashtable, as determined by the equals method; false otherwise.



containsKey
public boolean containsKey(Object key)(Code)
Allow only String and CaselessStringKey keys to be looked up. This always throws an IllegalArgumentException.
Parameters:
  key - possible key. always throws IllegalArgumentException.



get
public Object get(String key)(Code)
Returns the value to which the specified key is mapped in this hashtable. The key is wrapped by a CaselessStringKey before being looked up.
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:   CaselessStringKeyHashtable.put(String,Object)



get
public Object get(CaselessStringKey key)(Code)
Returns the value to which the specified key is mapped in this hashtable.
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:   CaselessStringKeyHashtable.put(CaselessStringKey,Object)



get
public Object get(Object key)(Code)
Allow only String and CaselessStringKey keys to be looked up. This always throws an IllegalArgumentException.
Parameters:
  key - possible key. always throws IllegalArgumentException.
See Also:   CaselessStringKeyHashtable.put(Object,Object)



put
public Object put(String key, Object value)(Code)
Maps the specified key to the specified value in this hashtable. Neither the key nor the value can be null. The key is wrapped by a CaselessStringKey before mapping the key to the value.

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.
exception:
  IllegalArgumentException - if the key or value isnull.
See Also:   Object.equals(Object)
See Also:   CaselessStringKeyHashtable.get(String)




put
public Object put(CaselessStringKey key, Object value)(Code)
Maps the specified key to the specified value in this hashtable. Neither the key nor the value can 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.
exception:
  IllegalArgumentException - if the key or value isnull.
See Also:   Object.equals(Object)
See Also:   CaselessStringKeyHashtable.get(CaselessStringKey)




put
public Object put(Object key, Object value)(Code)
Allow only String and CaselessStringKey keys to be mapped. This always throws an IllegalArgumentException.
Parameters:
  key - possible key.
Parameters:
  value - the value. always throws IllegalArgumentException.
See Also:   CaselessStringKeyHashtable.get(Object)



remove
public Object remove(String key)(Code)
Removes the key (and its corresponding value) from this hashtable. This method does nothing if the key is not in the hashtable. The key is wrapped by a CaselessStringKey before trying to remove the entry.
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.



remove
public Object remove(CaselessStringKey key)(Code)
Removes the key (and its corresponding value) from this hashtable. This method does nothing if the key is not 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.



remove
public Object remove(Object key)(Code)
Allow only String and CaselessStringKey keys to be removed. This always throws an IllegalArgumentException.
Parameters:
  key - possible key. always throws IllegalArgumentException.
See Also:   CaselessStringKeyHashtable.get(Object)



Methods inherited from java.util.Hashtable
public synchronized void clear()(Code)(Java Doc)
public synchronized Object clone()(Code)(Java Doc)
public synchronized boolean contains(Object value)(Code)(Java Doc)
public synchronized boolean containsKey(Object key)(Code)(Java Doc)
public boolean containsValue(Object value)(Code)(Java Doc)
public synchronized Enumeration<V> elements()(Code)(Java Doc)
public Set<Map.Entry<K, V>> entrySet()(Code)(Java Doc)
public synchronized boolean equals(Object o)(Code)(Java Doc)
public synchronized V get(Object key)(Code)(Java Doc)
public synchronized int hashCode()(Code)(Java Doc)
public synchronized boolean isEmpty()(Code)(Java Doc)
public Set<K> keySet()(Code)(Java Doc)
public synchronized Enumeration<K> keys()(Code)(Java Doc)
public synchronized V put(K key, V value)(Code)(Java Doc)
public synchronized void putAll(Map<? extends K, ? extends V> t)(Code)(Java Doc)
protected void rehash()(Code)(Java Doc)
public synchronized V remove(Object key)(Code)(Java Doc)
public synchronized int size()(Code)(Java Doc)
public synchronized String toString()(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.