org.aksw.commons.collections.multimaps
Interface ISetMultimap<K,V>

All Known Subinterfaces:
IBiSetMultimap<K,V>
All Known Implementing Classes:
BiHashMultimap

public interface ISetMultimap<K,V>


Method Summary
 Map<K,Collection<V>> asMap()
           
 void clear()
           
 Set<Map.Entry<K,V>> entries()
           
 Set<V> get(Object key)
           
 boolean put(K key, V value)
           
 void putAll(ISetMultimap<K,V> other)
           
 Set<V> removeAll(Object key)
           
 

Method Detail

asMap

Map<K,Collection<V>> asMap()

put

boolean put(K key,
            V value)

putAll

void putAll(ISetMultimap<K,V> other)

removeAll

Set<V> removeAll(Object key)

get

Set<V> get(Object key)

entries

Set<Map.Entry<K,V>> entries()

clear

void clear()


Copyright © 2011. All Rights Reserved.