-
- Type Parameters:
K
- the type of keys maintained by this mapV
- the type of mapped values
- All Known Implementing Classes:
- AbstractMultivaluedMap, MultivaluedHashMap
public interface MultivaluedMap<K,V> extends Map<K,List<V>>
A map of key-values pairs. Each key can have zero or more values.- Since:
- 1.0
- Author:
- Paul Sandoz, Marc Hadley, Marek Potociar
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method and Description void
add(K key, V value)
Add a value to the current list of values for the supplied key.void
addAll(K key, List<V> valueList)
Add all the values from the supplied value list to the current list of values for the supplied key.void
addAll(K key, V... newValues)
Add multiple values to the current list of values for the supplied key.void
addFirst(K key, V value)
Add a value to the first position in the current list of values for the supplied key.boolean
equalsIgnoreValueOrder(MultivaluedMap<K,V> otherMap)
Compare the specified map with this map for equality modulo the order of values for each key.V
getFirst(K key)
A shortcut to get the first value of the supplied key.void
putSingle(K key, V value)
Set the key's value to be a one item list consisting of the supplied value.-
Methods inherited from interface java.util.Map
clear, compute, computeIfAbsent, computeIfPresent, containsKey, containsValue, entrySet, equals, forEach, get, getOrDefault, hashCode, isEmpty, keySet, merge, put, putAll, putIfAbsent, remove, remove, replace, replace, replaceAll, size, values
-
-
-
-
Method Detail
-
putSingle
void putSingle(K key, V value)
Set the key's value to be a one item list consisting of the supplied value. Any existing values will be replaced.- Parameters:
key
- the keyvalue
- the single value of the key
-
add
void add(K key, V value)
Add a value to the current list of values for the supplied key.- Parameters:
key
- the keyvalue
- the value to be added.
-
getFirst
V getFirst(K key)
A shortcut to get the first value of the supplied key.- Parameters:
key
- the key- Returns:
- the first value for the specified key or null if the key is not in the map.
-
addAll
void addAll(K key, V... newValues)
Add multiple values to the current list of values for the supplied key. If the supplied array of new values is empty, method returns immediately. Method throws aNullPointerException
if the supplied array of values isnull
.- Parameters:
key
- the key.newValues
- the values to be added.- Throws:
NullPointerException
- if the supplied array of new values isnull
.- Since:
- 2.0
-
addAll
void addAll(K key, List<V> valueList)
Add all the values from the supplied value list to the current list of values for the supplied key. If the supplied value list is empty, method returns immediately. Method throws aNullPointerException
if the supplied array of values isnull
.- Parameters:
key
- the key.valueList
- the list of values to be added.- Throws:
NullPointerException
- if the supplied value list isnull
.- Since:
- 2.0
-
addFirst
void addFirst(K key, V value)
Add a value to the first position in the current list of values for the supplied key.- Parameters:
key
- the keyvalue
- the value to be added.- Since:
- 2.0
-
equalsIgnoreValueOrder
boolean equalsIgnoreValueOrder(MultivaluedMap<K,V> otherMap)
Compare the specified map with this map for equality modulo the order of values for each key. Specifically, the values associated with each key are compared as if they were ordered lists.- Parameters:
otherMap
- map to be compared to this one.- Returns:
- true if the maps are equal modulo value ordering.
- Since:
- 2.0
-
-
Traduction non disponible
Les API Java ne sont pas encore traduites en français sur l'infobrol. Seule la version anglaise est disponible pour l'instant.
Version en cache
21/08/2025 17:21:23 Cette version de la page est en cache (à la date du 21/08/2025 17:21:23) afin d'accélérer le traitement.Vous pouvez activer le mode utilisateur dans le menu en haut pour afficher la version plus récente de la page.
Document créé le 11/06/2005, dernière modification le 18/08/2025
Source du document imprimé : https://www.gaudry.be/java-api-javaee-rf-javax/ws/rs/core/multivaluedmap.html
L'infobrol est un site personnel dont le contenu n'engage que moi. Le texte est mis à disposition sous licence CreativeCommons(BY-NC-SA). Plus d'info sur les conditions d'utilisation et sur l'auteur.
Références
Ces références et liens indiquent des documents consultés lors de la rédaction de cette page, ou qui peuvent apporter un complément d'information, mais les auteurs de ces sources ne peuvent être tenus responsables du contenu de cette page.
L'auteur de ce site est seul responsable de la manière dont sont présentés ici les différents concepts, et des libertés qui sont prises avec les ouvrages de référence. N'oubliez pas que vous devez croiser les informations de sources multiples afin de diminuer les risques d'erreurs.