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()
           
 boolean containsEntry(Object key, Object value)
           
 boolean containsKey(Object key)
           
 boolean containsValue(Object value)
           
 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)
           
 int size()
           
 

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()

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.