org.filteredpush.rdf.handler
Class MapOfSets<K,V>

java.lang.Object
  extended by org.filteredpush.rdf.handler.MapOfSets<K,V>
Type Parameters:
K -
V -

public class MapOfSets<K,V>
extends java.lang.Object

A map structure that contains a Map of Sets.

Author:
dlowery

Constructor Summary
MapOfSets()
           
 
Method Summary
 void clear()
           
 boolean containsKey(java.lang.Object key)
           
 boolean containsValue(java.lang.Object value)
           
 java.util.Set<V> get(K key)
           
 boolean isEmpty()
           
 java.util.Set<K> keySet()
           
 java.util.Set<V> put(K key, V value)
           
 boolean remove(K key, V value)
           
 int size()
           
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

MapOfSets

public MapOfSets()
Method Detail

size

public int size()

isEmpty

public boolean isEmpty()

containsKey

public boolean containsKey(java.lang.Object key)

containsValue

public boolean containsValue(java.lang.Object value)

get

public java.util.Set<V> get(K key)

put

public java.util.Set<V> put(K key,
                            V value)

remove

public boolean remove(K key,
                      V value)

clear

public void clear()

keySet

public java.util.Set<K> keySet()