Class AbstractMultivaluedMap<K,V>

java.lang.Object
jakarta.ws.rs.core.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
Abstract skeleton implementation of a MultivaluedMap that is backed by a [key, multi-value] store represented as a Map<K, List<V>>.
See Also: