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>
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()
containsEntry
boolean containsEntry(Object key,
Object value)
containsValue
boolean containsValue(Object value)
containsKey
boolean containsKey(Object key)
size
int size()
clear
void clear()
Copyright © 2012. All Rights Reserved.