Class AbstractMultivaluedMap<K,V>
- Type Parameters:
- K- the type of keys maintained by this map.
- V- the type of mapped values.
- All Implemented Interfaces:
- MultivaluedMap<K,V>,- Serializable,- Map<K,List<V>>
- Direct Known Subclasses:
- MultivaluedHashMap
public abstract class AbstractMultivaluedMap<K,V> extends Object implements MultivaluedMap<K,V>, Serializable
MultivaluedMap that is backed by a [key, multi-value] store represented
 as a Map<K, List<V>>.- Author:
- Marek Potociar
- See Also:
- Serialized Form
- 
Nested Class Summary
- 
Field Summary
- 
Constructor SummaryConstructors Constructor Description AbstractMultivaluedMap(Map<K,List<V>> store)Initialize the backing store in the abstract parent multivalued map implementation.
- 
Method SummaryModifier and Type Method Description voidadd(K key, V value)Add a value to the current list of values for the supplied key.voidaddAll(K key, List<V> valueList)Add all the values from the supplied value list to the current list of values for the supplied key.voidaddAll(K key, V... newValues)Add multiple values to the current list of values for the supplied key.voidaddFirst(K key, V value)Add a value to the first position in the current list of values for the supplied key.protected voidaddFirstNull(List<V> values)Define the behavior for adding anullvalues to the first position in the value list.protected voidaddNull(List<V> values)Define the behavior for adding anullvalues to the value list.voidclear()booleancontainsKey(Object key)booleancontainsValue(Object value)Set<Map.Entry<K,List<V>>>entrySet()booleanequals(Object o)booleanequalsIgnoreValueOrder(MultivaluedMap<K,V> omap)Compare the specified map with this map for equality modulo the order of values for each key.List<V>get(Object key)VgetFirst(K key)A shortcut to get the first value of the supplied key.protected List<V>getValues(K key)Return a non-null list of values for a given key.inthashCode()booleanisEmpty()Set<K>keySet()List<V>put(K key, List<V> value)voidputAll(Map<? extends K,? extends List<V>> m)voidputSingle(K key, V value)Set the value for the key to be a one item list consisting of the supplied value.List<V>remove(Object key)intsize()StringtoString()Collection<List<V>>values()Methods inherited from class java.lang.Objectclone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface java.util.Mapcompute, computeIfAbsent, computeIfPresent, forEach, getOrDefault, merge, putIfAbsent, remove, replace, replace, replaceAll
- 
Field Details- 
storeBacking store for the [key, multi-value] pairs.
 
- 
- 
Constructor Details- 
AbstractMultivaluedMapInitialize the backing store in the abstract parent multivalued map implementation.- Parameters:
- store- the backing- Mapto be used as a [key, multi-value] store. Must not be- null.
- Throws:
- NullPointerException- in case the underlying- storeparameter is- null.
 
 
- 
- 
Method Details- 
putSingleSet the value for the key to be a one item list consisting of the supplied value. Any existing values will be replaced. NOTE: This implementation ignoresnullvalues; A supplied value ofnullis ignored and not added to the purged value list. As a result of such operation, empty value list would be registered for the supplied key. Overriding implementations may modify this behavior by redefining theaddNull(java.util.List)method.- Specified by:
- putSinglein interface- MultivaluedMap<K,V>
- Parameters:
- key- the key
- value- the single value of the key. If the value is- nullit will be ignored.
 
- 
addNullDefine the behavior for adding a Default implementation is a no-op, i.e. thenullvalues to the value list.nullvalues are ignored. Overriding implementations may modify this behavior by providing their own definitions of this method.- Parameters:
- values- value list where the- nullvalue addition is being requested.
 
- 
addFirstNullDefine the behavior for adding a Default implementation is a no-op, i.e. thenullvalues to the first position in the value list.nullvalues are ignored. Overriding implementations may modify this behavior by providing their own definitions of this method.- Parameters:
- values- value list where the- nullvalue addition is being requested.
 
- 
addAdd a value to the current list of values for the supplied key. NOTE: This implementation ignoresnullvalues; A supplied value ofnullis ignored and not added to the value list. Overriding implementations may modify this behavior by redefining theaddNull(java.util.List)method.- Specified by:
- addin interface- MultivaluedMap<K,V>
- Parameters:
- key- the key
- value- the value to be added.
 
- 
addAllAdd multiple values to the current list of values for the supplied key. If the supplied array of new values is empty, method returns immediately. Method throws a NOTE: This implementation ignoresNullPointerExceptionif the supplied array of values isnull.nullvalues; Any of the supplied values ofnullis ignored and not added to the value list. Overriding implementations may modify this behavior by redefining theaddNull(java.util.List)method.- Specified by:
- addAllin interface- MultivaluedMap<K,V>
- Parameters:
- key- the key.
- newValues- the values to be added.
- Throws:
- NullPointerException- if the supplied array of new values is- null.
 
- 
addAllAdd all the values from the supplied value list to the current list of values for the supplied key. If the supplied value list is empty, method returns immediately. Method throws a NOTE: This implementation ignoresNullPointerExceptionif the supplied array of values isnull.nullvalues; Anynullvalue in the supplied value list is ignored and not added to the value list. Overriding implementations may modify this behavior by redefining theaddNull(java.util.List)method.- Specified by:
- addAllin interface- MultivaluedMap<K,V>
- Parameters:
- key- the key.
- valueList- the list of values to be added.
- Throws:
- NullPointerException- if the supplied value list is- null.
 
- 
getFirstDescription copied from interface:MultivaluedMapA shortcut to get the first value of the supplied key.- Specified by:
- getFirstin interface- MultivaluedMap<K,V>
- Parameters:
- key- the key
- Returns:
- the first value for the specified key or null if the key is not in the map.
 
- 
addFirstAdd a value to the first position in the current list of values for the supplied key. NOTE: This implementation ignoresnullvalues; A supplied value ofnullis ignored and not added to the purged value list. Overriding implementations may modify this behavior by redefining theaddFirstNull(java.util.List)method.- Specified by:
- addFirstin interface- MultivaluedMap<K,V>
- Parameters:
- key- the key
- value- the value to be added.
 
- 
getValuesReturn a non-null list of values for a given key. The returned list may be empty. If there is no entry for the key in the map, a new emptyListinstance is created, registered within the map to hold the values of the key and returned from the method.- Parameters:
- key- the key.
- Returns:
- value list registered with the key. The method is guaranteed to never return null.
 
- 
toString
- 
hashCodepublic int hashCode()This implementation delegates the method call to to the the underlying [key, multi-value] store. 
- 
equalsThis implementation delegates the method call to to the the underlying [key, multi-value] store. 
- 
values
- 
sizepublic int size()
- 
remove
- 
putAll
- 
put
- 
keySet
- 
isEmptypublic boolean isEmpty()
- 
get
- 
entrySet
- 
containsValue- Specified by:
- containsValuein interface- Map<K,V>
 
- 
containsKey- Specified by:
- containsKeyin interface- Map<K,V>
 
- 
clearpublic void clear()
- 
equalsIgnoreValueOrderDescription copied from interface:MultivaluedMapCompare the specified map with this map for equality modulo the order of values for each key. Specifically, the values associated with each key are compared as if they were ordered lists.- Specified by:
- equalsIgnoreValueOrderin interface- MultivaluedMap<K,V>
- Parameters:
- omap- map to be compared to this one.
- Returns:
- true if the maps are equal modulo value ordering.
 
 
-