javax.ws.rs.core
Interface MultivaluedMap<K,V>

All Superinterfaces:
Map<K,List<V>>

public interface MultivaluedMap<K,V>
extends Map<K,List<V>>


Nested Class Summary
 
Nested classes/interfaces inherited from interface java.util.Map
Map.Entry<K,V>
 
Method Summary
 void add(K key, V value)
           
 V getFirst(K key)
           
 void putSingle(K key, V value)
           
 
Methods inherited from interface java.util.Map
clear, containsKey, containsValue, entrySet, equals, get, hashCode, isEmpty, keySet, put, putAll, remove, size, values
 

Method Detail

add

void add(K key,
         V value)

getFirst

V getFirst(K key)

putSingle

void putSingle(K key,
               V value)


Copyright © 2003-2012 The Apache Software Foundation. All Rights Reserved.