Package com.globalmentor.collections
Class HashSetHashMap<K,V>
- java.lang.Object
-
- com.globalmentor.collections.MapDecorator<K,C>
-
- com.globalmentor.collections.AbstractDecoratorCollectionMap<K,V,java.util.Set<V>>
-
- com.globalmentor.collections.HashSetHashMap<K,V>
-
- All Implemented Interfaces:
CollectionMap<K,V,java.util.Set<V>>
,java.util.Map<K,java.util.Set<V>>
public class HashSetHashMap<K,V> extends AbstractDecoratorCollectionMap<K,V,java.util.Set<V>>
An implementation of aHashMap
that stores anHashSet
of values for each key, with special methods for retrieving single values.- Author:
- Garret Wilson
-
-
Field Summary
-
Fields inherited from class com.globalmentor.collections.MapDecorator
map
-
-
Constructor Summary
Constructors Constructor Description HashSetHashMap()
Default constructor that decorates aHashMap
.HashSetHashMap(int initialCapacity)
Initial capacity constructor that decorates aHashMap
.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.Set<V>
createCollection()
Creates a collection in which to store values.-
Methods inherited from class com.globalmentor.collections.AbstractDecoratorCollectionMap
addItem, getCollection, getItem, getItemCount, getItems, hasItems, removeItem
-
Methods inherited from class com.globalmentor.collections.MapDecorator
clear, compute, computeIfAbsent, computeIfPresent, containsKey, containsValue, entrySet, equals, forEach, get, getOrDefault, hashCode, isEmpty, keySet, merge, put, putAll, putIfAbsent, remove, remove, replace, replace, replaceAll, size, values
-
-
-
-
Constructor Detail
-
HashSetHashMap
public HashSetHashMap()
Default constructor that decorates aHashMap
.
-
HashSetHashMap
public HashSetHashMap(int initialCapacity)
Initial capacity constructor that decorates aHashMap
.- Parameters:
initialCapacity
- the initial capacity.- Throws:
java.lang.IllegalArgumentException
- if the initial capacity is negative.
-
-
Method Detail
-
createCollection
public java.util.Set<V> createCollection()
Creates a collection in which to store values. This version returns anHashSet
.- Returns:
- The collections with the values stored.
-
-