org.aksw.commons.collections.reversible.ReversibleSetMultimap Maven / Gradle / Ivy
package org.aksw.commons.collections.reversible;
import com.google.common.collect.SetMultimap;
/**
* Multimap in which a key can only map to a unique value.
*
* As a consequence, putting an entry with a value 'v' will remove
* any prior entry with the same value.
*
* @author raven
*
* @param
* @param
*/
public interface ReversibleSetMultimap
extends SetMultimap
{
ReversibleMap reverse();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy