Apache CXF API

org.apache.cxf.jaxrs.impl
Class MetadataMap<K,V>

java.lang.Object
  extended by org.apache.cxf.jaxrs.impl.MetadataMap<K,V>
All Implemented Interfaces:
Map<K,List<V>>, javax.ws.rs.core.MultivaluedMap<K,V>

public class MetadataMap<K,V>
extends Object
implements javax.ws.rs.core.MultivaluedMap<K,V>


Nested Class Summary
 
Nested classes/interfaces inherited from interface java.util.Map
Map.Entry<K,V>
 
Constructor Summary
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)
           
 
Method Summary
 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()
           
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
 

Constructor Detail

MetadataMap

public MetadataMap()

MetadataMap

public MetadataMap(int size)

MetadataMap

public MetadataMap(Map<K,List<V>> store)

MetadataMap

public MetadataMap(Map<K,List<V>> store,
                   boolean copy)

MetadataMap

public MetadataMap(boolean readOnly,
                   boolean caseInsensitive)

MetadataMap

public MetadataMap(Map<K,List<V>> store,
                   boolean readOnly,
                   boolean caseInsensitive)

MetadataMap

public MetadataMap(Map<K,List<V>> store,
                   boolean copyStore,
                   boolean readOnly,
                   boolean caseInsensitive)
Method Detail

add

public void add(K key,
                V value)
Specified by:
add in interface javax.ws.rs.core.MultivaluedMap<K,V>

getFirst

public V getFirst(K key)
Specified by:
getFirst in interface javax.ws.rs.core.MultivaluedMap<K,V>

putSingle

public void putSingle(K key,
                      V value)
Specified by:
putSingle in interface javax.ws.rs.core.MultivaluedMap<K,V>

clear

public void clear()
Specified by:
clear in interface Map<K,List<V>>

containsKey

public boolean containsKey(Object key)
Specified by:
containsKey in interface Map<K,List<V>>

containsValue

public boolean containsValue(Object value)
Specified by:
containsValue in interface Map<K,List<V>>

entrySet

public Set<Map.Entry<K,List<V>>> entrySet()
Specified by:
entrySet in interface Map<K,List<V>>

get

public List<V> get(Object key)
Specified by:
get in interface Map<K,List<V>>

isEmpty

public boolean isEmpty()
Specified by:
isEmpty in interface Map<K,List<V>>

keySet

public Set<K> keySet()
Specified by:
keySet in interface Map<K,List<V>>

put

public List<V> put(K key,
                   List<V> value)
Specified by:
put in interface Map<K,List<V>>

putAll

public void putAll(Map<? extends K,? extends List<V>> map)
Specified by:
putAll in interface Map<K,List<V>>

remove

public List<V> remove(Object key)
Specified by:
remove in interface Map<K,List<V>>

size

public int size()
Specified by:
size in interface Map<K,List<V>>

values

public Collection<List<V>> values()
Specified by:
values in interface Map<K,List<V>>

hashCode

public int hashCode()
Specified by:
hashCode in interface Map<K,List<V>>
Overrides:
hashCode in class Object

equals

public boolean equals(Object o)
Specified by:
equals in interface Map<K,List<V>>
Overrides:
equals in class Object

toString

public String toString()
Overrides:
toString in class Object

addAll

public void addAll(K key,
                   V... newValues)
Specified by:
addAll in interface javax.ws.rs.core.MultivaluedMap<K,V>

addAll

public void addAll(K key,
                   List<V> newValues)
Specified by:
addAll in interface javax.ws.rs.core.MultivaluedMap<K,V>

addFirst

public void addFirst(K key,
                     V value)
Specified by:
addFirst in interface javax.ws.rs.core.MultivaluedMap<K,V>

equalsIgnoreValueOrder

public boolean equalsIgnoreValueOrder(javax.ws.rs.core.MultivaluedMap<K,V> map)
Specified by:
equalsIgnoreValueOrder in interface javax.ws.rs.core.MultivaluedMap<K,V>

Apache CXF API

Apache CXF