Key - The type for the map keyValue - The type for the map valuespublic class MultiValuedTreeMap<Key,Value> extends Object implements javax.ws.rs.core.MultivaluedMap<Key,Value>, Serializable, Cloneable
| Constructor and Description |
|---|
MultiValuedTreeMap() |
MultiValuedTreeMap(Comparator<Key> comparator) |
| Modifier and Type | Method and Description |
|---|---|
void |
add(Key key,
Value value) |
void |
addAll(Key key,
List<Value> valueList) |
void |
addAll(Key key,
Value... newValues) |
void |
addFirst(Key key,
Value value) |
void |
clear() |
MultiValuedTreeMap<Key,Value> |
clone() |
boolean |
containsKey(Object key) |
boolean |
containsValue(Object value) |
Set<Map.Entry<Key,List<Value>>> |
entrySet() |
boolean |
equals(Object o) |
boolean |
equalsIgnoreValueOrder(javax.ws.rs.core.MultivaluedMap<Key,Value> vmap) |
List<Value> |
get(Object key) |
Value |
getFirst(Key key) |
int |
hashCode() |
boolean |
isEmpty() |
Set<Key> |
keySet() |
List<Value> |
put(Key key,
List<Value> value) |
void |
putAll(Map<? extends Key,? extends List<Value>> t) |
void |
putSingle(Key key,
Value value) |
List<Value> |
remove(Object key) |
int |
size() |
String |
toString() |
Collection<List<Value>> |
values() |
finalize, getClass, notify, notifyAll, wait, wait, waitcompute, computeIfAbsent, computeIfPresent, forEach, getOrDefault, merge, putIfAbsent, remove, replace, replace, replaceAllpublic MultiValuedTreeMap()
public MultiValuedTreeMap(Comparator<Key> comparator)
public boolean containsKey(Object key)
containsKey in interface Map<Key,List<Value>>public boolean containsValue(Object value)
containsValue in interface Map<Key,List<Value>>public boolean equals(Object o)
public int hashCode()
public Collection<List<Value>> values()
public boolean equalsIgnoreValueOrder(javax.ws.rs.core.MultivaluedMap<Key,Value> vmap)
public MultiValuedTreeMap<Key,Value> clone()
Copyright © 2022. All rights reserved.