Package org.jboss.resteasy.specimpl
Class MultivaluedMapImpl<K,V>
- java.lang.Object
 - 
- java.util.AbstractMap<K,V>
 - 
- java.util.HashMap<K,List<V>>
 - 
- org.jboss.resteasy.specimpl.MultivaluedMapImpl<K,V>
 
 
 
 
- 
- All Implemented Interfaces:
 Serializable,Cloneable,Map<K,List<V>>,javax.ws.rs.core.MultivaluedMap<K,V>
public class MultivaluedMapImpl<K,V> extends HashMap<K,List<V>> implements javax.ws.rs.core.MultivaluedMap<K,V>
- Version:
 - $Revision: 1 $
 - Author:
 - Bill Burke
 - See Also:
 - Serialized Form
 
 
- 
- 
Nested Class Summary
- 
Nested classes/interfaces inherited from class java.util.AbstractMap
AbstractMap.SimpleEntry<K extends Object,V extends Object>, AbstractMap.SimpleImmutableEntry<K extends Object,V extends Object> 
 - 
 
- 
Constructor Summary
Constructors Constructor Description MultivaluedMapImpl() 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidadd(K key, V value)voidaddAll(K key, List<V> valueList)voidaddAll(K key, V... newValues)voidaddAll(MultivaluedMapImpl<K,V> other)voidaddFirst(K key, V value)voidaddMultiple(K key, Collection<V> values)booleanequalsIgnoreValueOrder(javax.ws.rs.core.MultivaluedMap<K,V> omap)VgetFirst(K key)List<V>getList(K key)voidputSingle(K key, V value)- 
Methods inherited from class java.util.HashMap
clear, clone, compute, computeIfAbsent, computeIfPresent, containsKey, containsValue, entrySet, forEach, get, getOrDefault, isEmpty, keySet, merge, put, putAll, putIfAbsent, remove, remove, replace, replace, replaceAll, size, values 
- 
Methods inherited from class java.util.AbstractMap
equals, hashCode, toString 
- 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait 
- 
Methods inherited from interface java.util.Map
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 
 - 
 
 - 
 
- 
- 
Method Detail
- 
addMultiple
public final void addMultiple(K key, Collection<V> values)
 
- 
addAll
public void addAll(MultivaluedMapImpl<K,V> other)
 
 - 
 
 -