| Constructor and Description | 
|---|
MetadataMap()  | 
MetadataMap(boolean readOnly,
           boolean caseInsensitive)  | 
MetadataMap(int size)  | 
MetadataMap(Map<K,List<V>> store)  | 
MetadataMap(Map<K,List<V>> store,
           boolean copy)  | 
MetadataMap(Map<K,List<V>> store,
           boolean readOnly,
           boolean caseInsensitive)  | 
MetadataMap(Map<K,List<V>> store,
           boolean copyStore,
           boolean readOnly,
           boolean caseInsensitive)  | 
| Modifier and Type | Method and Description | 
|---|---|
void | 
add(K key,
   V value)  | 
void | 
addAll(K key,
      List<V> newValues)  | 
void | 
addAll(K key,
      V... newValues)  | 
void | 
addFirst(K key,
        V value)  | 
void | 
clear()  | 
boolean | 
containsKey(Object key)  | 
boolean | 
containsValue(Object value)  | 
Set<Map.Entry<K,List<V>>> | 
entrySet()  | 
boolean | 
equals(Object o)  | 
boolean | 
equalsIgnoreValueOrder(javax.ws.rs.core.MultivaluedMap<K,V> map)  | 
List<V> | 
get(Object key)  | 
V | 
getFirst(K key)  | 
int | 
hashCode()  | 
boolean | 
isEmpty()  | 
Set<K> | 
keySet()  | 
List<V> | 
put(K key,
   List<V> value)  | 
void | 
putAll(Map<? extends K,? extends List<V>> map)  | 
void | 
putSingle(K key,
         V value)  | 
List<V> | 
remove(Object key)  | 
int | 
size()  | 
String | 
toString()  | 
Collection<List<V>> | 
values()  | 
clone, finalize, getClass, notify, notifyAll, wait, wait, waitcompute, computeIfAbsent, computeIfPresent, forEach, getOrDefault, merge, putIfAbsent, remove, replace, replace, replaceAllpublic MetadataMap()
public MetadataMap(int size)
public MetadataMap(boolean readOnly,
                   boolean caseInsensitive)
public boolean containsKey(Object key)
containsKey in interface Map<K,List<V>>public boolean containsValue(Object value)
containsValue in interface Map<K,List<V>>public int hashCode()
public boolean equals(Object o)
@SafeVarargs public final void addAll(K key, V... newValues)
Apache CXF