Constructor and Description |
---|
UnmodifiableMultivaluedMap(javax.ws.rs.core.MultivaluedMap<K,V> delegate)
Creates a new ImmutableMultivaluedMap.
|
Modifier and Type | Method and Description |
---|---|
void |
add(K key,
V value) |
void |
clear() |
boolean |
containsKey(Object key) |
boolean |
containsValue(Object value) |
Set<Map.Entry<K,List<V>>> |
entrySet() |
List<V> |
get(Object key) |
V |
getFirst(K key) |
boolean |
isEmpty() |
Set<K> |
keySet() |
List<V> |
put(K key,
List<V> value) |
void |
putAll(Map<? extends K,? extends List<V>> m) |
void |
putSingle(K key,
V value) |
List<V> |
remove(Object key) |
int |
size() |
Collection<List<V>> |
values() |
public boolean containsKey(Object key)
containsKey
in interface Map<K,List<V>>
public boolean containsValue(Object value)
containsValue
in interface Map<K,List<V>>
Copyright © 2013 Oracle Corporation. All rights reserved.