| com.atlassian.jira.util.collect.MultiMap<K, V, C extends java.util.Collection<V>> |
| Public Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
Get all elements in all Collections.
| |||||||||||
Does this
MultiMap contain the value in any of its value collections. | |||||||||||
Does this
MultiMap contain the Collection as any of its value collections. | |||||||||||
Copy all values to the supplied collection.
| |||||||||||
Put a single value in to the appropriate mapped collection.
| |||||||||||
The sum of sizes of all contained keys.
| |||||||||||
|
[Expand]
Inherited Methods | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
From interface
java.util.Map
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Get all elements in all Collections. This returns the same type as the mapped Collections,
so if this MultiMap contains lists then there will be the same number
of elements as sizeAll(), whereas if the MultiMap contains sets
then duplicates may be removed. If a different type of Collection
The returned Collection is immutable.
Does this MultiMap contain the value in any of its value collections.
| value | the single value to check for |
|---|
Does this MultiMap contain the Collection as any of its value collections.
| value | the collection to check for |
|---|
Copy all values to the supplied collection.
| collection | to copy all the values to. |
|---|
Put a single value in to the appropriate mapped collection.
| key | the Key |
|---|---|
| value | the single value to add to the collection for this key |
The sum of sizes of all contained keys. May be different to calling size() on the
result of allValues()

