Class AbstractMultivaluedMap<K,V>
- java.lang.Object
-
- org.glassfish.tyrus.core.uri.internal.AbstractMultivaluedMap<K,V>
-
- Type Parameters:
K- the type of keys maintained by this map.V- the type of mapped values.
- All Implemented Interfaces:
java.util.Map<K,java.util.List<V>>,MultivaluedMap<K,V>
- Direct Known Subclasses:
MultivaluedHashMap
public abstract class AbstractMultivaluedMap<K,V> extends java.lang.Object implements MultivaluedMap<K,V>
Abstract skeleton implementation of aMultivaluedMapthat is backed by a [key, multi-value] store represented as aMap<K, List<V>>.- Author:
- Marek Potociar
-
-
Constructor Summary
Constructors Constructor Description AbstractMultivaluedMap(java.util.Map<K,java.util.List<V>> store)Initialize the backing store in the abstract parent multivalued map implementation.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier 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, java.util.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(java.util.List<V> values)Define the behavior for adding anullvalues to the first position in the value list.protected voidaddNull(java.util.List<V> values)Define the behavior for adding anullvalues to the value list.voidclear()booleancontainsKey(java.lang.Object key)booleancontainsValue(java.lang.Object value)java.util.Set<java.util.Map.Entry<K,java.util.List<V>>>entrySet()booleanequals(java.lang.Object o)booleanequalsIgnoreValueOrder(MultivaluedMap<K,V> omap)Compare the specified map with this map for equality modulo the order of values for each key.java.util.List<V>get(java.lang.Object key)VgetFirst(K key)A shortcut to get the first value of the supplied key.protected java.util.List<V>getValues(K key)Return a non-null list of values for a given key.inthashCode()booleanisEmpty()java.util.Set<K>keySet()java.util.List<V>put(K key, java.util.List<V> value)voidputAll(java.util.Map<? extends K,? extends java.util.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.java.util.List<V>remove(java.lang.Object key)intsize()java.lang.StringtoString()java.util.Collection<java.util.List<V>>values()
-
-
-
Constructor Detail
-
AbstractMultivaluedMap
public AbstractMultivaluedMap(java.util.Map<K,java.util.List<V>> store)
Initialize the backing store in the abstract parent multivalued map implementation.- Parameters:
store- the backingMapto be used as a [key, multi-value] store. Must not benull.- Throws:
java.lang.NullPointerException- in case the underlyingstoreparameter isnull.
-
-
Method Detail
-
putSingle
public final void putSingle(K key, V value)
Set 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 ignores
nullvalues; 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 interfaceMultivaluedMap<K,V>- Parameters:
key- the keyvalue- the single value of the key. If the value isnullit will be ignored.
-
addNull
protected void addNull(java.util.List<V> values)
Define the behavior for adding anullvalues to the value list.Default implementation is a no-op, i.e. the
nullvalues are ignored. Overriding implementations may modify this behavior by providing their own definitions of this method.- Parameters:
values- value list where thenullvalue addition is being requested.
-
addFirstNull
protected void addFirstNull(java.util.List<V> values)
Define the behavior for adding anullvalues to the first position in the value list.Default implementation is a no-op, i.e. the
nullvalues are ignored. Overriding implementations may modify this behavior by providing their own definitions of this method.- Parameters:
values- value list where thenullvalue addition is being requested.
-
add
public final void add(K key, V value)
Add a value to the current list of values for the supplied key.NOTE: This implementation ignores
nullvalues; 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 interfaceMultivaluedMap<K,V>- Parameters:
key- the keyvalue- the value to be added.
-
addAll
public final void addAll(K key, V... newValues)
Add 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 aNullPointerExceptionif the supplied array of values isnull.NOTE: This implementation ignores
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 interfaceMultivaluedMap<K,V>- Parameters:
key- the key.newValues- the values to be added.- Throws:
java.lang.NullPointerException- if the supplied array of new values isnull.
-
addAll
public final void addAll(K key, java.util.List<V> valueList)
Add 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 aNullPointerExceptionif the supplied array of values isnull.NOTE: This implementation ignores
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 interfaceMultivaluedMap<K,V>- Parameters:
key- the key.valueList- the list of values to be added.- Throws:
java.lang.NullPointerException- if the supplied value list isnull.
-
getFirst
public final V getFirst(K key)
Description copied from interface:MultivaluedMapA shortcut to get the first value of the supplied key.- Specified by:
getFirstin interfaceMultivaluedMap<K,V>- Parameters:
key- the key- Returns:
- the first value for the specified key or null if the key is not in the map.
-
addFirst
public final void addFirst(K key, V value)
Add a value to the first position in the current list of values for the supplied key.NOTE: This implementation ignores
nullvalues; 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 interfaceMultivaluedMap<K,V>- Parameters:
key- the keyvalue- the value to be added.
-
getValues
protected final java.util.List<V> getValues(K key)
Return 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 empty
Listinstance 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
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
hashCode
public int hashCode()
This implementation delegates the method call to to the the underlying [key, multi-value] store.
-
equals
public boolean equals(java.lang.Object o)
This implementation delegates the method call to to the the underlying [key, multi-value] store.
-
values
public java.util.Collection<java.util.List<V>> values()
-
remove
public java.util.List<V> remove(java.lang.Object key)
-
get
public java.util.List<V> get(java.lang.Object key)
-
containsValue
public boolean containsValue(java.lang.Object value)
-
containsKey
public boolean containsKey(java.lang.Object key)
-
equalsIgnoreValueOrder
public boolean equalsIgnoreValueOrder(MultivaluedMap<K,V> omap)
Description 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 interfaceMultivaluedMap<K,V>- Parameters:
omap- map to be compared to this one.- Returns:
- true if the maps are equal modulo value ordering.
-
-