Java Doc for MultiMap.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) 


org.apache.commons.collections.MultiMap

All known Subclasses:   org.apache.commons.collections.MultiHashMap,  org.apache.commons.collections.map.MultiValueMap,
MultiMap
public interface MultiMap extends Map(Code)
Defines a map that holds a collection of values against each key.

A MultiMap is a Map with slightly different semantics. Putting a value into the map will add the value to a Collection at that key. Getting a value will return a Collection, holding all the values put to that key.

For example:

 MultiMap mhm = new MultiHashMap();
 mhm.put(key, "A");
 mhm.put(key, "B");
 mhm.put(key, "C");
 Collection coll = (Collection) mhm.get(key);

coll will be a collection containing "A", "B", "C".

NOTE: Additional methods were added to this interface in Commons Collections 3.1. These were added solely for documentation purposes and do not change the interface as they were defined in the superinterface Map anyway.
since:
   Commons Collections 2.0
version:
   $Revision: 155406 $ $Date: 2005-02-26 12:55:26 +0000 (Sat, 26 Feb 2005) $
author:
   Christopher Berry
author:
   James Strachan
author:
   Stephen Colebourne





Method Summary
 booleancontainsValue(Object value)
     Checks whether the map contains the value specified.
 Objectget(Object key)
     Gets the collection of values associated with the specified key.

The returned value will implement Collection.

 Objectput(Object key, Object value)
     Adds the value to the collection associated with the specified key.
public  Objectremove(Object key, Object item)
     Removes a specific value from map.
 Objectremove(Object key)
     Removes all values associated with the specified key.
 intsize()
     Gets the number of keys in this map.
 Collectionvalues()
     Gets a collection containing all the values in the map.



Method Detail
containsValue
boolean containsValue(Object value)(Code)
Checks whether the map contains the value specified.

Implementations typically check all collections against all keys for the value. This cannot be mandated due to backwards compatability of this interface.
Parameters:
  value - the value to search for true if the map contains the value
throws:
  ClassCastException - if the value is of an invalid type
throws:
  NullPointerException - if the value is null and null value are invalid




get
Object get(Object key)(Code)
Gets the collection of values associated with the specified key.

The returned value will implement Collection. Implementations are free to declare that they return Collection subclasses such as List or Set.

Implementations typically return null if no values have been mapped to the key, however the implementation may choose to return an empty collection.

Implementations may choose to return a clone of the internal collection.
Parameters:
  key - the key to retrieve the Collection of values, implementations shouldreturn null for no mapping, but may return an empty collection
throws:
  ClassCastException - if the key is of an invalid type
throws:
  NullPointerException - if the key is null and null keys are invalid




put
Object put(Object key, Object value)(Code)
Adds the value to the collection associated with the specified key.

Unlike a normal Map the previous value is not replaced. Instead the new value is added to the collection stored against the key. The collection may be a List, Set or other collection dependent on implementation.
Parameters:
  key - the key to store against
Parameters:
  value - the value to add to the collection at the key typically the value added if the map changed and null if the map did not change
throws:
  UnsupportedOperationException - if the map is unmodifiable
throws:
  ClassCastException - if the key or value is of an invalid type
throws:
  NullPointerException - if the key or value is null and null is invalid
throws:
  IllegalArgumentException - if the key or value is invalid




remove
public Object remove(Object key, Object item)(Code)
Removes a specific value from map.

The item is removed from the collection mapped to the specified key. Other values attached to that key are unaffected.

If the last value for a key is removed, implementations typically return null from a subsequant get(Object), however they may choose to return an empty collection.
Parameters:
  key - the key to remove from
Parameters:
  item - the item to remove the value removed (which was passed in), null if nothing removed
throws:
  UnsupportedOperationException - if the map is unmodifiable
throws:
  ClassCastException - if the key or value is of an invalid type
throws:
  NullPointerException - if the key or value is null and null is invalid




remove
Object remove(Object key)(Code)
Removes all values associated with the specified key.

Implementations typically return null from a subsequant get(Object), however they may choose to return an empty collection.
Parameters:
  key - the key to remove values from the Collection of values removed, implementations shouldreturn null for no mapping found, but may return an empty collection
throws:
  UnsupportedOperationException - if the map is unmodifiable
throws:
  ClassCastException - if the key is of an invalid type
throws:
  NullPointerException - if the key is null and null keys are invalid




size
int size()(Code)
Gets the number of keys in this map.

Implementations typically return only the count of keys in the map This cannot be mandated due to backwards compatability of this interface. the number of key-collection mappings in this map




values
Collection values()(Code)
Gets a collection containing all the values in the map.

Inplementations typically return a collection containing the combination of values from all keys. This cannot be mandated due to backwards compatability of this interface. a collection view of the values contained in this map




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